
org.nofdev.exception.AuthenticationException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-core Show documentation
Show all versions of service-core Show documentation
The basic componet of Nofdev RPC framework
The newest version!
package org.nofdev.exception
import org.nofdev.servicefacade.AbstractBusinessException
/**
* Created by Liutengfei on 2016/9/23 0023.
*/
class AuthenticationException extends AbstractBusinessException {
static String DEFAULT_EXCEPTION_MESSAGE = "认证失败异常"
AuthenticationException() {
super(DEFAULT_EXCEPTION_MESSAGE)
}
AuthenticationException(String message) {
super(message)
}
AuthenticationException(String message, Throwable cause) {
super(message, cause)
}
AuthenticationException(Throwable cause) {
super(cause)
}
AuthenticationException(String message, Object datail) {
super(message, datail)
}
AuthenticationException(String message, Throwable cause, Object datail) {
super(message, cause, datail)
}
AuthenticationException(Throwable cause, Object datail) {
super(cause, datail)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy