| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.usky.common.exception;
- public class DefenceException extends RuntimeException {
- private String msg;
- private int code = 500;
- public DefenceException(String msg) {
- super(msg);
- this.msg = msg;
- }
- public DefenceException(String msg, Throwable e) {
- super(msg, e);
- this.msg = msg;
- }
- public DefenceException(String msg, int code) {
- super(msg);
- this.msg = msg;
- this.code = code;
- }
- public DefenceException(String msg, int code, Throwable e) {
- super(msg, e);
- this.msg = msg;
- this.code = code;
- }
- public String getMsg() {
- return this.msg;
- }
- public void setMsg(String msg) {
- this.msg = msg;
- }
- public int getCode() {
- return this.code;
- }
- public void setCode(int code) {
- this.code = code;
- }
- }
|