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

com.ql.util.express.exception.QLException 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;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy