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

info.novatec.testit.webtester.internal.implementation.pagefragments.exceptions.PageFragmentCreationException Maven / Gradle / Ivy

package info.novatec.testit.webtester.internal.implementation.pagefragments.exceptions;

import info.novatec.testit.webtester.internal.implementation.exceptions.DynamicImplementationException;
import info.novatec.testit.webtester.pagefragments.PageFragment;


public class PageFragmentCreationException extends DynamicImplementationException {

    private static final String MESSAGE = "Could not create instance of '%s':";

    public PageFragmentCreationException(Class pageFragmentType, Throwable cause) {
        super(String.format(MESSAGE, pageFragmentType.getCanonicalName()), cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy