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

com.ql.util.express.exception.QLBizException 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 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy