public class ExpressionException
extends java.lang.RuntimeException
ExpressionCompiler operations.
Does nothing more than give a different exception type to catch
in a catch() clause.| Constructor and Description |
|---|
ExpressionException(java.lang.String msg)
Constructor which accepts message text.
|
ExpressionException(java.lang.String msg,
java.lang.Throwable rootCause)
Constructor which accepts message text and root cause.
|
ExpressionException(java.lang.Throwable rootCause)
Constructor which accepts root cause.
|
public ExpressionException(java.lang.String msg)
msg - Message text.public ExpressionException(java.lang.String msg,
java.lang.Throwable rootCause)
msg - Message text.rootCause - Exception which is the root cause of this exception.public ExpressionException(java.lang.Throwable rootCause)
rootCause - Exception which is the root cause of this exception.