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

info.novatec.testit.webtester.waiting.TimeoutException Maven / Gradle / Ivy

package info.novatec.testit.webtester.waiting;

import info.novatec.testit.webtester.WebTesterException;


/**
 * This {@link WebTesterException} is thrown in case a wait operation timed out.
 *
 * @see Wait
 * @see WaitUntil
 * @since 2.0
 */
public class TimeoutException extends WebTesterException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy