初始化
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user