
org.rnorth.ducttape.RetryCountExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duct-tape Show documentation
Show all versions of duct-tape Show documentation
General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results)
The newest version!
package org.rnorth.ducttape;
import org.jetbrains.annotations.NotNull;
/**
* Indicates repeated failure of an UnreliableSupplier
*/
public class RetryCountExceededException extends RuntimeException {
public RetryCountExceededException(@NotNull String message, @NotNull Exception exception) {
super(message, exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy