Files
postgres-json/src/main/kotlin/fr/postgresjson/connexion/DataNotFoundException.kt
2023-04-06 21:14:36 +02:00

7 lines
188 B
Kotlin

package fr.postgresjson.connexion
class DataNotFoundException(val queryExecuted: String) : Exception() {
override val message: String
get() = "No data return for the query"
}