
org.nofdev.exception.BatchException.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
class BatchException extends AbstractBusinessException {
static String DEFAULT_EXCEPTION_MESSAGE = "批处理异常"
BatchException() {
super(DEFAULT_EXCEPTION_MESSAGE)
}
BatchException(String message) {
super(message)
}
BatchException(String message, Throwable cause) {
super(message, cause)
}
BatchException(Throwable cause) {
super(cause)
}
BatchException(String message, Object datail) {
super(message, datail)
}
BatchException(String message, Throwable cause, Object datail) {
super(message, cause, datail)
}
BatchException(Throwable cause, Object datail) {
super(cause, datail)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy