forked from LianjiaTech/retrofit-spring-boot-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
0cabac2
commit 8e720b0
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...main/java/com/github/lianjiatech/retrofit/spring/boot/exception/RetryFailedException.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,16 @@ | ||
package com.github.lianjiatech.retrofit.spring.boot.exception; | ||
|
||
/** | ||
* @author 陈添明 | ||
* @since 2022/6/6 9:59 上午 | ||
*/ | ||
public class RetryFailedException extends RuntimeException { | ||
|
||
public RetryFailedException(String message) { | ||
super(message); | ||
} | ||
|
||
public RetryFailedException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
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