diff --git a/src/main/kotlin/ltd/hlaeja/exception/KeyProviderException.kt b/src/main/kotlin/ltd/hlaeja/exception/KeyProviderException.kt new file mode 100644 index 0000000..7d9473b --- /dev/null +++ b/src/main/kotlin/ltd/hlaeja/exception/KeyProviderException.kt @@ -0,0 +1,23 @@ +package ltd.hlaeja.exception + +@Suppress("unused") +class KeyProviderException : RuntimeException { + + constructor() : super() + + constructor(message: String) : super(message) + + constructor(cause: Throwable) : super(cause) + + constructor( + message: String, + cause: Throwable, + ) : super(message, cause) + + constructor( + message: String, + cause: Throwable, + enableSuppression: Boolean, + writableStackTrace: Boolean, + ) : super(message, cause, enableSuppression, writableStackTrace) +}