cn.easyproject.easyee.auto.EasyAutoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyee-auto Show documentation
Show all versions of easyee-auto Show documentation
Code Auto Generator for EasyEE Open Source JavaEE Enterprise Basic Development Platform(https://github.com/ushelp/EasyEE).
The newest version!
package cn.easyproject.easyee.auto;
/**
* EasyEE Auto Exception
* @author Ray
* @author [email protected]
* @author easyproject.cn
* @since 1.0.0
*/
public class EasyAutoException extends RuntimeException {
private static final long serialVersionUID = 1L;
public EasyAutoException() {
super();
}
public EasyAutoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public EasyAutoException(String message, Throwable cause) {
super(message, cause);
}
public EasyAutoException(String message) {
super(message);
}
public EasyAutoException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy