diff --git a/src/main/kotlin/exception/DbElementInsertionException.kt b/src/main/kotlin/exception/DbElementInsertionException.kt new file mode 100644 index 0000000..17dd8e1 --- /dev/null +++ b/src/main/kotlin/exception/DbElementInsertionException.kt @@ -0,0 +1,4 @@ +package codes.kalar.exception + +class DbElementInsertionException(message: String? = null, throwable: Throwable? = null ) : Throwable(message, throwable) { +} \ No newline at end of file diff --git a/src/main/kotlin/exception/DbElementNotFoundException.kt b/src/main/kotlin/exception/DbElementNotFoundException.kt new file mode 100644 index 0000000..3228156 --- /dev/null +++ b/src/main/kotlin/exception/DbElementNotFoundException.kt @@ -0,0 +1,4 @@ +package codes.kalar.exception + +class DbElementNotFoundException(message: String? = null, throwable: Throwable? = null ) : Throwable(message, throwable) { +} \ No newline at end of file