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

commonMain.mahjongutils.entry.MethodExecutionException.kt Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
package mahjongutils.entry

class MethodExecutionException(
    val code: Int,
    message: String,
    cause: Throwable? = null
) : RuntimeException(message, cause) {
    constructor(code: Int, cause: Throwable) : this(code, cause.message ?: "", cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy