Package com.xceptance.xlt.api.actions
Class ElementMissingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xceptance.xlt.api.actions.ElementMissingException
- All Implemented Interfaces:
Serializable
Indicates a missing condition when loading a page. For instance a missing element we can click on.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ElementMissingException(String message) Creates a new exception using the given message.ElementMissingException(String message, Throwable cause) Creates a new exception using the given exception message and cause.ElementMissingException(Throwable cause) Creates a new exception using the given throwable instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ElementMissingException
public ElementMissingException()Default constructor. -
ElementMissingException
Creates a new exception using the given message.- Parameters:
message- exception message to use
-
ElementMissingException
Creates a new exception using the given throwable instance.- Parameters:
cause- cause of this exception
-
ElementMissingException
Creates a new exception using the given exception message and cause.- Parameters:
message- exception messagecause- cause of this exception
-