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

com.seleniumtests.customexception.RetryableDriverException Maven / Gradle / Ivy

There is a newer version: 5.1.13
Show newest version
package com.seleniumtests.customexception;

/**
 * A DriverException that tells WebUIDriver it's allowed to retry creation
 */
public class RetryableDriverException extends DriverExceptions {
    public RetryableDriverException(String message, Throwable throwable) {
        super(message, throwable);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy