feat: 新增异常 SCFSException

main
13009 2024-05-20 15:41:45 +08:00
parent 846d095904
commit 8ddb22d042
9 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class ApiClientException extends RuntimeException {
public class ApiClientException extends SCFSException {
public ApiClientException() {
super();

View File

@ -4,7 +4,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class DecryptException extends RuntimeException {
public class DecryptException extends SCFSException {
public DecryptException(String message, Throwable throwable) {
super(message, throwable);
}

View File

@ -3,7 +3,7 @@ package com.czcb.scfs.api.core.exception;
/**
* @since 2.0.0
*/
public class EncodingException extends RuntimeException {
public class EncodingException extends SCFSException {
public EncodingException() {
super();
}

View File

@ -4,7 +4,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class EncryptException extends RuntimeException {
public class EncryptException extends SCFSException {
public EncryptException() {
super();
}

View File

@ -4,7 +4,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class FileReadException extends RuntimeException {
public class FileReadException extends SCFSException {
public FileReadException() {
super();
}

View File

@ -3,7 +3,7 @@ package com.czcb.scfs.api.core.exception;
/**
* @since 2.0.0
*/
public class SignException extends RuntimeException {
public class SignException extends SCFSException {
public SignException() {
super();
}

View File

@ -6,7 +6,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class TimestampException extends RuntimeException {
public class TimestampException extends SCFSException {
public TimestampException() {
super();
}

View File

@ -6,7 +6,7 @@ package com.czcb.scfs.api.core.exception;
* @author wangwei
* @since 2.0.0
*/
public class ValidationException extends RuntimeException {
public class ValidationException extends SCFSException {
public ValidationException() {
super();
}

View File

@ -3,7 +3,7 @@ package com.czcb.scfs.api.core.exception;
/**
* @since 2.0.0
*/
public class ZipException extends RuntimeException {
public class ZipException extends SCFSException {
public ZipException() {
super();
}