
org.nofdev.servicefacade.ServiceNotFoundException.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.servicefacade
/**
* Created by Qiang on 11/2/15.
*/
class ServiceNotFoundException extends AbstractBusinessException{
static String DEFAULT_EXCEPTION_MESSAGE = "该服务不存在"
ServiceNotFoundException() {
super(DEFAULT_EXCEPTION_MESSAGE)
}
ServiceNotFoundException(String message) {
super(message)
}
ServiceNotFoundException(String message, Throwable cause) {
super(message, cause)
}
ServiceNotFoundException(Throwable cause) {
super(cause)
}
ServiceNotFoundException(String message, Object datail) {
super(message, datail)
}
ServiceNotFoundException(String message, Throwable cause, Object datail) {
super(message, cause, datail)
}
ServiceNotFoundException(Throwable cause, Object datail) {
super(cause, datail)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy