package com.yeshi.buwan.exception; public class BaseException extends Exception { private static final long serialVersionUID = 1L; private int code; private String msg; public int getCode() { return code; } public String getMsg() { return msg; } public BaseException(int code, String msg) { this.code = code; this.msg = msg; } public BaseException(String msg) { this.msg = msg; } public BaseException() { } @Override public String getMessage() { return this.msg; } }