获取文件上传地址

This commit is contained in:
hejinbo
2023-10-10 16:22:24 +08:00
parent 2d86bbb5e8
commit 4d4ab28c40
14 changed files with 1588 additions and 9 deletions
@@ -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;
}
}