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

com.netflix.concurrency.limits.executors.UncheckedTimeoutException Maven / Gradle / Ivy

package com.netflix.concurrency.limits.executors;

public class UncheckedTimeoutException extends RuntimeException {
    private static final long serialVersionUID = 0;

    public UncheckedTimeoutException() {}

    public UncheckedTimeoutException(String message) {
        super(message);
    }

    public UncheckedTimeoutException(Throwable cause) {
        super(cause);
    }

    public UncheckedTimeoutException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy