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

pl.domzal.junit.docker.rule.ex.WaitTimeoutException Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package pl.domzal.junit.docker.rule.ex;

import java.util.concurrent.TimeoutException;

public class WaitTimeoutException extends TimeoutException {

    private final long waited;

    public WaitTimeoutException(String message, long waited) {
        super(message);
        this.waited = waited;
    }

    public long getWaited() {
        return waited;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy