package com.zzg.common.exception;
|
|
|
import com.zzg.common.utils.enums.CustomExceptionEnums;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* 自定义异常
|
*
|
* @author ruoyi
|
*/
|
public class CustomException extends RuntimeException {
|
private static final long serialVersionUID = 1L;
|
|
private Integer code;
|
|
private String message;
|
|
public CustomException(@NotNull CustomExceptionEnums customExceptionEnums) {
|
throw new CustomException(customExceptionEnums.getMsg(), customExceptionEnums.getCode());
|
}
|
|
public CustomException(String message) {
|
this.message = message;
|
}
|
|
public CustomException(String message, Integer code) {
|
this.message = message;
|
this.code = code;
|
}
|
|
public CustomException(String message, Throwable e) {
|
super(message, e);
|
this.message = message;
|
}
|
|
@Override
|
public String getMessage() {
|
return message;
|
}
|
|
public Integer getCode() {
|
return code;
|
}
|
}
|