java-admin/src/main/java/com/sqx/common/exception/SqxException.java
2025-02-25 16:24:22 +08:00

52 lines
814 B
Java

package com.sqx.common.exception;
/**
* 自定义异常
*
*/
public class SqxException extends RuntimeException {
private static final long serialVersionUID = 1L;
private String msg;
private int code = 500;
public SqxException(String msg) {
super(msg);
this.msg = msg;
}
public SqxException(String msg, Throwable e) {
super(msg, e);
this.msg = msg;
}
public SqxException(String msg, int code) {
super(msg);
this.msg = msg;
this.code = code;
}
public SqxException(String msg, int code, Throwable e) {
super(msg, e);
this.msg = msg;
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
}