| Package | Description |
|---|---|
| org.springframework.retry |
Infrastructure implementations of retry concerns.
|
| org.springframework.retry.backoff |
Infrastructure implementations of retry backoff concerns.
|
| org.springframework.retry.policy |
Infrastructure implementations of retry policy concerns.
|
| org.springframework.retry.support |
Infrastructure implementations of retry support concerns.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ExhaustedRetryException |
class |
TerminatedRetryException |
| Modifier and Type | Class and Description |
|---|---|
class |
BackOffInterruptedException
Exception class signifiying that an attempt to back off using a
BackOffPolicy was interrupted, most likely by an
InterruptedException during a call to Thread.sleep(long). |
| Modifier and Type | Class and Description |
|---|---|
class |
RetryCacheCapacityExceededException
Exception that indicates that a cache limit was exceeded.
|
| Modifier and Type | Method and Description |
|---|---|
private static <E extends java.lang.Throwable> |
RetryTemplate.wrapIfNecessary(java.lang.Throwable throwable)
Re-throws the original throwable if it is an Exception, and wraps non-exceptions into
RetryException. |