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

org.chobit.spring.autoconfigure.rw.exception.RwException Maven / Gradle / Ivy

The newest version!
package org.chobit.spring.autoconfigure.rw.exception;

/**
 * 服务异常包装类
 *
 * @author robin
 */
public class RwException extends RuntimeException {


    private static final long serialVersionUID = 7773203247174587636L;


    private final int code;

    public RwException(int code, String msg) {
        super(msg);
        this.code = code;
    }

    public RwException(int code, String msg, Throwable t) {
        super(msg, t);
        this.code = code;
    }


    public int getCode() {
        return code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy