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

info.novatec.testit.webtester.junit.exceptions.NoPrimaryBrowserException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package info.novatec.testit.webtester.junit.exceptions;

import info.novatec.testit.webtester.junit.annotations.Primary;


@SuppressWarnings("serial")
public class NoPrimaryBrowserException extends IllegalTestClassStructureException {

    private static final String MESSAGE =
        "There are more then one managed browsers. For the feature you wanted to use a primary browser needs to be declared. Use @"
            + Primary.class.getSimpleName() + " to declare on of your browsers as primary.";

    public NoPrimaryBrowserException() {
        super(MESSAGE);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy