16 lines
341 B
Java
16 lines
341 B
Java
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);
|
|
}
|
|
}
|