commonMain.mahjongutils.entry.MethodExecutionException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahjong-utils-entry Show documentation
Show all versions of mahjong-utils-entry Show documentation
Provider a union entry for Mahjong Utils (for Japanese Riichi Mahjong)
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)
}