All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rnorth.ducttape.RetryCountExceededException Maven / Gradle / Ivy

Go to download

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