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

info.novatec.testit.webtester.junit5.extensions.NoManagedBrowserForNameException Maven / Gradle / Ivy

There is a newer version: 2.10.3
Show newest version
package info.novatec.testit.webtester.junit5.extensions;

import lombok.Getter;

import info.novatec.testit.webtester.browser.Browser;


/**
 * This exception is thrown in case there is no managed {@link Browser} with a given name when execution an extension.
 *
 * @since 2.1
 */
@Getter
public class NoManagedBrowserForNameException extends TestClassFormatException {

    /** The name of the browser that wasn't found. */
    private final String name;

    public NoManagedBrowserForNameException(String name) {
        super("There is no managed browser with the name: " + name);
        this.name = name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy