获取文件上传地址
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user