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

org.rnorth.ducttape.TimeoutException 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;
import org.jetbrains.annotations.Nullable;

/**
 * Indicates timeout of an UnreliableSupplier
 */
public class TimeoutException extends RuntimeException {

    public TimeoutException(@NotNull String message, @Nullable Exception exception) {
        super(message, exception);
    }

    public TimeoutException(@NotNull Exception e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy