commonMain.mahjongutils.ValidationError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahjong-utils-jvm Show documentation
Show all versions of mahjong-utils-jvm Show documentation
Mahjong Utils (for Japanese Riichi Mahjong)
package mahjongutils
interface ErrorInfo {
val message: String
}
open class ValidationException(
val errors: Collection
) : IllegalArgumentException() {
override val message: String = errors.joinToString("; ") { it.message }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy