Hideout/src/main/kotlin/dev/usbharu/hideout/exception/JsonParseException.kt

9 lines
289 B
Kotlin

package dev.usbharu.hideout.exception
class JsonParseException : IllegalArgumentException {
constructor() : super()
constructor(s: String?) : super(s)
constructor(message: String?, cause: Throwable?) : super(message, cause)
constructor(cause: Throwable?) : super(cause)
}