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

jp.vmi.selenium.selenese.InvalidSeleneseException Maven / Gradle / Ivy

package jp.vmi.selenium.selenese;

/**
 * Exception for invalid selenese syntax.
 */
public class InvalidSeleneseException extends Exception {

    private static final long serialVersionUID = 1L;

    /**
     * Constructor.
     * 

* {@link Throwable#Throwable(Throwable)} *

* @param cause the cause. */ public InvalidSeleneseException(Throwable cause) { super(cause); } /** * Constructor. *

* {@link Throwable#Throwable(String)} *

* @param message the detail message. */ public InvalidSeleneseException(String message) { super(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy