| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.apache.beehive.netui.script.RuntimeExpressionException org.apache.beehive.netui.script.IllegalExpressionException
IllegalExpressionException | public class IllegalExpressionException extends RuntimeExpressionException (Code) | | Exception thrown when an expression contains illegal syntax.
|
IllegalExpressionException | public IllegalExpressionException()(Code) | | Construct an IllegalExpressionException.
|
IllegalExpressionException | public IllegalExpressionException(String message)(Code) | | Construct an IllegalExpressionException with the given message.
Parameters: message - a String containing the text of the exception message |
IllegalExpressionException | public IllegalExpressionException(Throwable cause)(Code) | | Construct an IllegalExpressionException with the given cause
Parameters: cause - a Throwable that caused this exception to be thrown |
IllegalExpressionException | public IllegalExpressionException(String message, Throwable cause)(Code) | | Construct an IllegalExpressionException with the given message and cause .
Parameters: message - a String containing the text of the exception message Parameters: cause - a Throwable that caused this exception to be thrown |
IllegalExpressionException | public IllegalExpressionException(String message, String expression)(Code) | | Construct an IllegalExpressionException with the given message and the malformed expression.
Parameters: message - a String containing the text of this exception message Parameters: expression - the expression that was malformed and caused this exception to be thrown |
IllegalExpressionException | public IllegalExpressionException(String message, String expression, Throwable cause)(Code) | | Construct an IllegalExpressionException with the given message , the malformed expression, and the cause .
Parameters: message - a String containing the text of this exception message Parameters: expression - the expression that was malformed and caused this exception to be thrown Parameters: cause - a Throwable that caused this exception to be thrown |
getExpression | public String getExpression()(Code) | | Get the malformed expression.
the malformed expression |
|
|