add InsufficientFundsException

This commit is contained in:
2025-09-12 14:44:40 +02:00
parent 04d102c7e1
commit 0454f112e7

View File

@@ -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)
}