支持附件上传

This commit is contained in:
liming
2023-12-10 20:31:12 +08:00
parent aa18507143
commit 904728ef59
4 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.common.exception;
/**
* 不进行捕获的异常
*
* @author liming
* @date 2023/12/10 20:11
*/
public class NonCaptureException extends RuntimeException {
public NonCaptureException(String message, Throwable cause) {
super(message, cause);
}
}