All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.gaaabliz.kliz.common.data.DbException.kt Maven / Gradle / Ivy

package io.github.gaaabliz.kliz.common.data

class DbException(private val exc:Exception? = null, private val msg: String? = null) : Exception(msg) {
    fun getExcMessage() : String {
        if(exc != null) return exc.message.toString()
        return if(msg != null ) this.message.toString()
        else "DbException has not info attached to it."
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy