cn.tenfell.tools.nocontroller.utils.ControllerException Maven / Gradle / Ivy
The newest version!
package cn.tenfell.tools.nocontroller.utils;
public class ControllerException extends RuntimeException {
public ControllerException() {
}
public ControllerException(String message) {
super(message);
}
public ControllerException(String message, Throwable cause) {
super(message, cause);
}
public ControllerException(Throwable cause) {
super(cause);
}
public ControllerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy