From 98a4d14df43beb50c992f7f57ef7769e6713a9e5 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Mon, 25 Nov 2024 00:41:19 +0100 Subject: [PATCH] add KeyProviderException --- .../hlaeja/exception/KeyProviderException.kt | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/kotlin/ltd/hlaeja/exception/KeyProviderException.kt 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) +}