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

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

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

import lombok.Getter;

/**
 * @author liujia
 */
public class BaseException extends RuntimeException {
    @Getter
    private String code;

    public BaseException() {
        super();
    }
    public BaseException(String code, String message) {
        super(message);
        this.code = code;
    }
    public BaseException(String code, String message, Throwable cause) {
        super(message, cause);
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy