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

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

package info.novatec.testit.webtester.waiting;

import info.novatec.testit.webtester.WebTesterException;
import info.novatec.testit.webtester.conditions.Condition;


public class ConditionParameterMismatchException extends WebTesterException {

    private static final String MESSAGE = "Condition '%s' can't handle parameter of type '%s'!";

    protected ConditionParameterMismatchException(Class conditionType, Class parameterType,
        Throwable cause) {
        super(String.format(MESSAGE, conditionType, parameterType), cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy