docs: update retry

This commit is contained in:
Ilkka Seppälä
2024-05-19 11:39:39 +03:00
parent a8433cc634
commit f7c00f2b16
3 changed files with 80 additions and 71 deletions
@@ -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);
}
}