-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
481 changed files
with
15,488 additions
and
9,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
.../DataBackup/src/main/java/top/hcode/hoj/common/exception/StatusAccessDeniedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package top.hcode.hoj.common.exception; | ||
|
||
/** | ||
* @Author: Himit_ZH | ||
* @Date: 2022/3/9 10:30 | ||
* @Description: | ||
*/ | ||
public class StatusAccessDeniedException extends Exception { | ||
|
||
public StatusAccessDeniedException() { | ||
} | ||
|
||
public StatusAccessDeniedException(String message) { | ||
super(message); | ||
} | ||
|
||
public StatusAccessDeniedException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public StatusAccessDeniedException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public StatusAccessDeniedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...ringboot/DataBackup/src/main/java/top/hcode/hoj/common/exception/StatusFailException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package top.hcode.hoj.common.exception; | ||
|
||
/** | ||
* @Author: Himit_ZH | ||
* @Date: 2022/3/9 10:27 | ||
* @Description: | ||
*/ | ||
public class StatusFailException extends Exception{ | ||
public StatusFailException() { | ||
} | ||
|
||
public StatusFailException(String message) { | ||
super(message); | ||
} | ||
|
||
public StatusFailException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public StatusFailException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public StatusFailException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...oot/DataBackup/src/main/java/top/hcode/hoj/common/exception/StatusForbiddenException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package top.hcode.hoj.common.exception; | ||
|
||
/** | ||
* @Author: Himit_ZH | ||
* @Date: 2022/3/9 10:29 | ||
* @Description: | ||
*/ | ||
public class StatusForbiddenException extends Exception{ | ||
|
||
public StatusForbiddenException() { | ||
} | ||
|
||
public StatusForbiddenException(String message) { | ||
super(message); | ||
} | ||
|
||
public StatusForbiddenException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public StatusForbiddenException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public StatusForbiddenException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
} |
Oops, something went wrong.