Package jp.vmi.selenium.selenese
Class InvalidSeleneseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jp.vmi.selenium.selenese.InvalidSeleneseException
-
- All Implemented Interfaces:
Serializable
public class InvalidSeleneseException extends Exception
Exception for invalid selenese syntax.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSeleneseException(String message)Deprecated.InvalidSeleneseException(String message, String filename, String name)Constructor.InvalidSeleneseException(Throwable cause)Deprecated.InvalidSeleneseException(Throwable cause, String filename, String name)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFilename()Get filename of test case or test suite.StringgetName()Get name of test case or test suite.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidSeleneseException
@Deprecated public InvalidSeleneseException(Throwable cause)
Deprecated.Constructor.- Parameters:
cause- the cause.
-
InvalidSeleneseException
@Deprecated public InvalidSeleneseException(String message)
Deprecated.Constructor.- Parameters:
message- the detail message.
-
InvalidSeleneseException
public InvalidSeleneseException(Throwable cause, String filename, String name)
Constructor.- Parameters:
cause- the cause.filename- filename of test case or test suite. (or null)name- name of test case or test suite. (or null)
-
-