ru.tinkoff.kora.resilient.retry.RetryExhaustedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilient-kora Show documentation
Show all versions of resilient-kora Show documentation
Kora resilient-kora module
The newest version!
package ru.tinkoff.kora.resilient.retry;
import jakarta.annotation.Nonnull;
import ru.tinkoff.kora.resilient.ResilientException;
/**
* Exception that indicates all Retry attempts exhausted
*/
public final class RetryExhaustedException extends ResilientException {
public RetryExhaustedException(int attempts, @Nonnull Throwable cause) {
super("All '" + attempts + "' retry attempts exhausted", cause);
}
}