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

com.rt.logic.exception.LogicException Maven / Gradle / Ivy

There is a newer version: 1.1.17
Show newest version
package com.rt.logic.exception;

/**
 * Logic层通用异常
 *
 * @author liujia
 */
public class LogicException extends BaseException {
    public LogicException() {
        super();
    }

    public LogicException(String code, String message) {
        super(code, message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy