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 Show documentation
Show all versions of mahjong-utils Show documentation
Mahjong Utils (for Japanese Riichi Mahjong)
The newest version!
package mahjongutils
interface ErrorInfo {
val message: String
}
open class ValidationException(
val errors: Collection
) : IllegalArgumentException() {
override val message: String = errors.joinToString("; ") { it.message }
}