You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
477 B

package net.aiterp.git.ykonsole2
sealed class YKonsoleException : RuntimeException {
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable?) : super(message, cause)
constructor(cause: Throwable?) : super(cause)
}
class InfrastructureException(cause: Throwable) : YKonsoleException(cause)
class BadInputException(message: String) : YKonsoleException(message)
class StorageException(message: String) : YKonsoleException(message)