
org.nofdev.exception.ParamsException.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 2017/8/5 0005.
*/
class ParamsException extends AbstractBusinessException {
static String DEFAULT_EXCEPTION_MESSAGE = "无效的参数"
ParamsException() {
super(DEFAULT_EXCEPTION_MESSAGE)
}
ParamsException(String message) {
super(message)
}
ParamsException(String message, Throwable cause) {
super(message, cause)
}
ParamsException(Throwable cause) {
super(cause)
}
ParamsException(String message, Object datail) {
super(message, datail)
}
ParamsException(String message, Throwable cause, Object datail) {
super(message, cause, datail)
}
ParamsException(Throwable cause, Object datail) {
super(cause, datail)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy