All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ql.util.express.exception.QLCompileException Maven / Gradle / Ivy

Go to download

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy