37 lines
561 B
Java
37 lines
561 B
Java
package com.ruoyi.common.exception;
|
|
|
|
/**
|
|
* description 自定义全局异常
|
|
* @author 澄泓
|
|
* datetime 2019年7月1日上午10:43:24
|
|
*/
|
|
public class EsignDemoException extends Exception {
|
|
|
|
private static final long serialVersionUID = 4359180081622082792L;
|
|
private Exception e;
|
|
|
|
public EsignDemoException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
public EsignDemoException(String msg, Throwable cause) {
|
|
super(msg,cause);
|
|
}
|
|
|
|
public EsignDemoException(){
|
|
|
|
}
|
|
|
|
public Exception getE() {
|
|
return e;
|
|
}
|
|
|
|
public void setE(Exception e) {
|
|
this.e = e;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|