From adfe96720bb22a7dfa1fe6e6d3812d696c68491d Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Fri, 12 Sep 2025 14:44:40 +0200 Subject: [PATCH] add InsufficientFundsException --- .../ltd/lulz/exception/InsufficientFundsException.kt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main/kotlin/ltd/lulz/exception/InsufficientFundsException.kt diff --git a/src/main/kotlin/ltd/lulz/exception/InsufficientFundsException.kt b/src/main/kotlin/ltd/lulz/exception/InsufficientFundsException.kt new file mode 100644 index 0000000..fefee23 --- /dev/null +++ b/src/main/kotlin/ltd/lulz/exception/InsufficientFundsException.kt @@ -0,0 +1,10 @@ +package ltd.lulz.exception + +@Suppress("unused") +class InsufficientFundsException : RuntimeException { + + constructor() : super() + constructor(message: String?) : super(message) + constructor(message: String?, cause: Throwable?) : super(message, cause) + constructor(cause: Throwable?) : super(cause) +}