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

net.jkcode.jkmvc.validator.ValidateException.kt Maven / Gradle / Ivy

package net.jkcode.jkmvc.validator

import net.jkcode.jkmvc.common.JkException

/**
 * 校验异常
 */
class ValidateException : JkException {
    public constructor(message: String) : super(message) {
    }

    public constructor(cause: Throwable) : super(cause) {
    }

    public constructor(message: String, cause: Throwable) : super(message, cause) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy