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

com.starmcc.qmframework.exception.QmFrameException Maven / Gradle / Ivy

package com.starmcc.qmframework.exception;

/**
 * 框架异常
 *
 * @Author qm
 * @Date 2019/1/30 19:46
 */
public class QmFrameException extends RuntimeException {


    public QmFrameException() {
        super();
    }

    public QmFrameException(String message) {
        super(message);
    }

    public QmFrameException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy