Package cl.obcom.desktopfx.expr
Class ExpressionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.core.DesktopException
cl.obcom.desktopfx.expr.ExpressionException
- All Implemented Interfaces:
Serializable
Signals that an
Expression
exception of some sort has occurred.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newExpressionException
instance.ExpressionException
(String message) Constructs a newExpressionException
with amessage
.ExpressionException
(String message, Throwable cause) Constructs a newExpressionException
with amessage
andcause
.ExpressionException
(Throwable cause) Constructs a newExpressionException
with acause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExpressionException
public ExpressionException()Constructs a newExpressionException
instance. -
ExpressionException
Constructs a newExpressionException
with amessage
.- Parameters:
message
- the detail message.
-
ExpressionException
Constructs a newExpressionException
with acause
.- Parameters:
cause
- the cause of this exception.
-
ExpressionException
Constructs a newExpressionException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-