mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-09-04 00:17:24 +00:00
docs: update retry
This commit is contained in:
@@ -24,6 +24,8 @@
|
||||
*/
|
||||
package com.iluwatar.retry;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* Indicates that the customer was not found.
|
||||
*
|
||||
@@ -34,6 +36,8 @@ package com.iluwatar.retry;
|
||||
* @author George Aristy (george.aristy@gmail.com)
|
||||
*/
|
||||
public final class CustomerNotFoundException extends BusinessException {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = -6972888602621778664L;
|
||||
|
||||
/**
|
||||
|
||||
@@ -111,4 +111,3 @@ public final class RetryExponentialBackoff<T> implements BusinessOperation<T> {
|
||||
} while (true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user