feat: 新增异常 SCFSException
parent
8ddb22d042
commit
09c74d5338
|
|
@ -0,0 +1,23 @@
|
||||||
|
package com.czcb.scfs.api.core.exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangwei
|
||||||
|
* @date 2024/5/20
|
||||||
|
*/
|
||||||
|
public class SCFSException extends RuntimeException {
|
||||||
|
public SCFSException() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SCFSException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SCFSException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public SCFSException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue