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 Details

    • InvalidSeleneseException

      @Deprecated public InvalidSeleneseException​(Throwable cause)
      Deprecated.
      Constructor.

      Throwable(Throwable)

      Parameters:
      cause - the cause.
    • InvalidSeleneseException

      @Deprecated public InvalidSeleneseException​(String message)
      Deprecated.
      Constructor.

      Throwable(String)

      Parameters:
      message - the detail message.
    • InvalidSeleneseException

      public InvalidSeleneseException​(Throwable cause, String filename, String name)
      Constructor.

      Throwable(Throwable)

      Parameters:
      cause - the cause.
      filename - filename of test case or test suite. (or null)
      name - name of test case or test suite. (or null)
    • InvalidSeleneseException

      public InvalidSeleneseException​(String message, String filename, String name)
      Constructor.

      Throwable(String)

      Parameters:
      message - the detail message.
      filename - filename of test case or test suite. (or null)
      name - name of test case or test suite. (or null)
  • Method Details

    • getFilename

      public String getFilename()
      Get filename of test case or test suite.
      Returns:
      filename.
    • getName

      public String getName()
      Get name of test case or test suite.
      Returns:
      name.