初始化

This commit is contained in:
2026-01-31 01:30:29 +08:00
commit acdbe48502
389 changed files with 45586 additions and 0 deletions

View File

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