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

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

package info.novatec.testit.webtester.waiting;

import info.novatec.testit.webtester.WebTesterException;

public class WaitActionFailedException extends WebTesterException {

    private static final String MESSAGE = "WaitAction '%s' could not be performed!";

    protected WaitActionFailedException(Class action, Throwable cause) {
        super(String.format(MESSAGE, action), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy