Class ActionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kquiet.browser.action.exception.ActionException
- All Implemented Interfaces:
Serializable
Thrown to indicate that a browser action encounters a non-recoverable problem during execution.
- Author:
- Kimberly
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionActionException
(String message) Constructs anActionException
with the specified detail message.ActionException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ActionException
(Throwable cause) Constructs anActionException
with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ActionException
Constructs anActionException
with the specified detail message.- Parameters:
message
- the detail message
-
ActionException
Constructs anActionException
with the specified cause.- Parameters:
cause
- the cause
-
ActionException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-