7 lines
188 B
Kotlin
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"
|
|
}
|