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

com.starmcc.qmdata.exception.QmDataException Maven / Gradle / Ivy

There is a newer version: 2.2.1-RELEASE
Show newest version
package com.starmcc.qmdata.exception;

/**
 * @author qm
 * @date 2019/1/13 16:06
 * @Description QmBase错误异常
 */
public class QmDataException extends RuntimeException {
    /**
     * 提供无参数的构造方法
     */
    public QmDataException() {
    }


    /**
     * 提供一个有参数的构造方法,可自动生成
     * @param message
     */
    public QmDataException(String message) {
        // 把参数传递给Throwable的带String参数的构造方法
        super(message);
    }

    /**
     * 提供一个带参的构造方法,并且输出一些异常信息
     * @param message
     * @param cause
     */
    public QmDataException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy