com.ql.util.express.exception.QLBizException 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 QLBizException extends Exception {
private static final long serialVersionUID = -5602081330453002691L;
public QLBizException() {
}
public QLBizException(String message) {
super(message);
}
public QLBizException(String message, Throwable cause) {
super(message, cause);
}
}