Added custom exceptions

This commit is contained in:
2025-08-10 16:23:45 -04:00
parent 4ddd483d9b
commit 62b73bafe1
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package codes.kalar.exception
class DbElementInsertionException(message: String? = null, throwable: Throwable? = null ) : Throwable(message, throwable) {
}

View File

@@ -0,0 +1,4 @@
package codes.kalar.exception
class DbElementNotFoundException(message: String? = null, throwable: Throwable? = null ) : Throwable(message, throwable) {
}