feat: 新增异常 SCFSException

main
13009 2024-05-20 15:42:25 +08:00
parent 8ddb22d042
commit 09c74d5338
1 changed files with 23 additions and 0 deletions

View File

@ -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);
}
}