-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KTOR-3419 Exceptions for database call and validation exceptions now …
…have theirs purpose
- Loading branch information
1 parent
8bc370c
commit b9702e4
Showing
3 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
postgres/src/main/kotlin/com/example/exceptions/DbElementInsertException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package com.example.exceptions | ||
|
||
class DbElementInsertException(message: String? = null, throwable: Throwable? = null) : Throwable(message, throwable) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters