com.ql.util.express.exception.QLCompileException 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;
/**
* 编译器的异常信息
*
* @author [email protected]
* @since 2019/6/18 2:13 PM
*/
public class QLCompileException extends Exception {
private static final long serialVersionUID = -4743114416550746038L;
public QLCompileException() {
}
public QLCompileException(String message) {
super(message);
}
public QLCompileException(String message, Throwable cause) {
super(message, cause);
}
}