pl.domzal.junit.docker.rule.ex.WaitTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-docker-rule Show documentation
Show all versions of junit-docker-rule Show documentation
JUnit Rule starting docker container in junit test case.
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