io.github.rafal.laskowski.wait.exceptions.TimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wait-until Show documentation
Show all versions of wait-until Show documentation
Library allows to wait until specified condition is met
The newest version!
package io.github.rafal.laskowski.wait.exceptions;
public class TimeoutException extends RuntimeException {
public TimeoutException(String message) {
super(message);
}
public TimeoutException(String message, Throwable cause) {
super(message, cause);
}
}