Fix javadoc typo
This commit is contained in:
@@ -92,7 +92,8 @@ public class SimpleRetryPolicy implements RetryPolicy {
|
||||
* @param maxAttempts the maximum number of attempts
|
||||
* @param retryableExceptions the map of exceptions that are retryable based on the
|
||||
* map value (true/false).
|
||||
* @param traverseCauses is this clause traversable
|
||||
* @param traverseCauses true to traverse the exception cause chain until a classified
|
||||
* exception is found or the root cause is reached.
|
||||
*/
|
||||
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,
|
||||
boolean traverseCauses) {
|
||||
@@ -108,7 +109,8 @@ public class SimpleRetryPolicy implements RetryPolicy {
|
||||
* @param maxAttempts the maximum number of attempts
|
||||
* @param retryableExceptions the map of exceptions that are retryable based on the
|
||||
* map value (true/false).
|
||||
* @param traverseCauses is this clause traversable
|
||||
* @param traverseCauses true to traverse the exception cause chain until a classified
|
||||
* exception is found or the root cause is reached.
|
||||
* @param defaultValue the default action.
|
||||
*/
|
||||
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,
|
||||
|
||||
Reference in New Issue
Block a user