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

org.fluentlenium.core.wait.WaitInterruptedException Maven / Gradle / Ivy

package org.fluentlenium.core.wait;

/**
 * Exception type to be thrown when the wait performed by FluentLenium is interrupted.
 */
public class WaitInterruptedException extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy