RuoYi
3 years ago
17 changed files with 299 additions and 191 deletions
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
package com.ruoyi.common.core.exception; |
||||
|
||||
/** |
||||
* 自定义异常 |
||||
* |
||||
* @author ruoyi |
||||
*/ |
||||
public class CustomException extends RuntimeException |
||||
{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private Integer code; |
||||
|
||||
private String message; |
||||
|
||||
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; |
||||
} |
||||
} |
@ -0,0 +1,58 @@
@@ -0,0 +1,58 @@
|
||||
package com.ruoyi.common.core.exception; |
||||
|
||||
/** |
||||
* 全局异常 |
||||
* |
||||
* @author ruoyi |
||||
*/ |
||||
public class GlobalException extends RuntimeException |
||||
{ |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 错误提示 |
||||
*/ |
||||
private String message; |
||||
|
||||
/** |
||||
* 错误明细,内部调试错误 |
||||
* |
||||
* 和 {@link CommonResult#getDetailMessage()} 一致的设计 |
||||
*/ |
||||
private String detailMessage; |
||||
|
||||
/** |
||||
* 空构造方法,避免反序列化问题 |
||||
*/ |
||||
public GlobalException() |
||||
{ |
||||
} |
||||
|
||||
public GlobalException(String message) |
||||
{ |
||||
this.message = message; |
||||
} |
||||
|
||||
public String getDetailMessage() |
||||
{ |
||||
return detailMessage; |
||||
} |
||||
|
||||
public GlobalException setDetailMessage(String detailMessage) |
||||
{ |
||||
this.detailMessage = detailMessage; |
||||
return this; |
||||
} |
||||
|
||||
public String getMessage() |
||||
{ |
||||
return message; |
||||
} |
||||
|
||||
public GlobalException setMessage(String message) |
||||
{ |
||||
this.message = message; |
||||
return this; |
||||
} |
||||
} |
@ -0,0 +1,73 @@
@@ -0,0 +1,73 @@
|
||||
package com.ruoyi.common.core.exception; |
||||
|
||||
/** |
||||
* 业务异常 |
||||
* |
||||
* @author ruoyi |
||||
*/ |
||||
public final class ServiceException extends RuntimeException |
||||
{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 错误码 |
||||
*/ |
||||
private Integer code; |
||||
|
||||
/** |
||||
* 错误提示 |
||||
*/ |
||||
private String message; |
||||
|
||||
/** |
||||
* 错误明细,内部调试错误 |
||||
* |
||||
* 和 {@link CommonResult#getDetailMessage()} 一致的设计 |
||||
*/ |
||||
private String detailMessage; |
||||
|
||||
/** |
||||
* 空构造方法,避免反序列化问题 |
||||
*/ |
||||
public ServiceException() |
||||
{ |
||||
} |
||||
|
||||
public ServiceException(String message) |
||||
{ |
||||
this.message = message; |
||||
} |
||||
|
||||
public ServiceException(String message, Integer code) |
||||
{ |
||||
this.message = message; |
||||
this.code = code; |
||||
} |
||||
|
||||
public String getDetailMessage() |
||||
{ |
||||
return detailMessage; |
||||
} |
||||
|
||||
public String getMessage() |
||||
{ |
||||
return message; |
||||
} |
||||
|
||||
public Integer getCode() |
||||
{ |
||||
return code; |
||||
} |
||||
|
||||
public ServiceException setMessage(String message) |
||||
{ |
||||
this.message = message; |
||||
return this; |
||||
} |
||||
|
||||
public ServiceException setDetailMessage(String detailMessage) |
||||
{ |
||||
this.detailMessage = detailMessage; |
||||
return this; |
||||
} |
||||
} |
@ -1,79 +1,79 @@
@@ -1,79 +1,79 @@
|
||||
package com.ruoyi.common.core.exception; |
||||
|
||||
/** |
||||
* 基础异常 |
||||
* |
||||
* @author ruoyi |
||||
*/ |
||||
public class BaseException extends RuntimeException |
||||
{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 所属模块 |
||||
*/ |
||||
private String module; |
||||
|
||||
/** |
||||
* 错误码 |
||||
*/ |
||||
private String code; |
||||
|
||||
/** |
||||
* 错误码对应的参数 |
||||
*/ |
||||
private Object[] args; |
||||
|
||||
/** |
||||
* 错误消息 |
||||
*/ |
||||
private String defaultMessage; |
||||
|
||||
public BaseException(String module, String code, Object[] args, String defaultMessage) |
||||
{ |
||||
this.module = module; |
||||
this.code = code; |
||||
this.args = args; |
||||
this.defaultMessage = defaultMessage; |
||||
} |
||||
|
||||
public BaseException(String module, String code, Object[] args) |
||||
{ |
||||
this(module, code, args, null); |
||||
} |
||||
|
||||
public BaseException(String module, String defaultMessage) |
||||
{ |
||||
this(module, null, null, defaultMessage); |
||||
} |
||||
|
||||
public BaseException(String code, Object[] args) |
||||
{ |
||||
this(null, code, args, null); |
||||
} |
||||
|
||||
public BaseException(String defaultMessage) |
||||
{ |
||||
this(null, null, null, defaultMessage); |
||||
} |
||||
|
||||
public String getModule() |
||||
{ |
||||
return module; |
||||
} |
||||
|
||||
public String getCode() |
||||
{ |
||||
return code; |
||||
} |
||||
|
||||
public Object[] getArgs() |
||||
{ |
||||
return args; |
||||
} |
||||
|
||||
public String getDefaultMessage() |
||||
{ |
||||
return defaultMessage; |
||||
} |
||||
} |
||||
package com.ruoyi.common.core.exception.base; |
||||
|
||||
/** |
||||
* 基础异常 |
||||
* |
||||
* @author ruoyi |
||||
*/ |
||||
public class BaseException extends RuntimeException |
||||
{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 所属模块 |
||||
*/ |
||||
private String module; |
||||
|
||||
/** |
||||
* 错误码 |
||||
*/ |
||||
private String code; |
||||
|
||||
/** |
||||
* 错误码对应的参数 |
||||
*/ |
||||
private Object[] args; |
||||
|
||||
/** |
||||
* 错误消息 |
||||
*/ |
||||
private String defaultMessage; |
||||
|
||||
public BaseException(String module, String code, Object[] args, String defaultMessage) |
||||
{ |
||||
this.module = module; |
||||
this.code = code; |
||||
this.args = args; |
||||
this.defaultMessage = defaultMessage; |
||||
} |
||||
|
||||
public BaseException(String module, String code, Object[] args) |
||||
{ |
||||
this(module, code, args, null); |
||||
} |
||||
|
||||
public BaseException(String module, String defaultMessage) |
||||
{ |
||||
this(module, null, null, defaultMessage); |
||||
} |
||||
|
||||
public BaseException(String code, Object[] args) |
||||
{ |
||||
this(null, code, args, null); |
||||
} |
||||
|
||||
public BaseException(String defaultMessage) |
||||
{ |
||||
this(null, null, null, defaultMessage); |
||||
} |
||||
|
||||
public String getModule() |
||||
{ |
||||
return module; |
||||
} |
||||
|
||||
public String getCode() |
||||
{ |
||||
return code; |
||||
} |
||||
|
||||
public Object[] getArgs() |
||||
{ |
||||
return args; |
||||
} |
||||
|
||||
public String getDefaultMessage() |
||||
{ |
||||
return defaultMessage; |
||||
} |
||||
} |
Loading…
Reference in new issue