com.ql.util.express.exception.QLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of QLExpress Show documentation
Show all versions of QLExpress Show documentation
QLExpress is a powerful, lightweight, dynamic language for the Java platform aimed at improving developers’ productivity in different business scenes.
The newest version!
package com.ql.util.express.exception;
/**
* QLExpress的框架执行过程中捕获的异常
*
* @author [email protected]
* @since 2019/6/18 2:13 PM
*/
public class QLException extends Exception {
private static final long serialVersionUID = -1861857045313408218L;
public QLException() {
}
public QLException(String message) {
super(message);
}
public QLException(String message, Throwable cause) {
super(message, cause);
}
}