-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor of BlockingQueueTypeEnum (#1032)
Co-authored-by: hongdan.qin <hongdan.qin@dmall.com>
- Loading branch information
1 parent
b64c78d
commit 209856a
Showing
2 changed files
with
200 additions
and
66 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
12 changes: 12 additions & 0 deletions
12
hippo4j-common/src/main/java/cn/hippo4j/common/web/exception/NotSupportedException.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,12 @@ | ||
package cn.hippo4j.common.web.exception; | ||
|
||
/** | ||
* This exception is thrown when a context implementation does not support the operation being invoked. | ||
*/ | ||
public class NotSupportedException extends AbstractException { | ||
|
||
public NotSupportedException(String message, ErrorCode errorCode) { | ||
super(message, null, errorCode); | ||
} | ||
|
||
} |