| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.beehive.netui.script.ExpressionEvaluationException org.apache.beehive.netui.script.ExpressionUpdateException
ExpressionUpdateException | public class ExpressionUpdateException extends ExpressionEvaluationException (Code) | | Exception thrown when an error occurs during an expression update.
|
Constructor Summary | |
public | ExpressionUpdateException() Construct an ExpressionUpdateException. | public | ExpressionUpdateException(String message, String expression, Throwable cause) Construct an ExpressionUpdateException with the given message, failed expression, expected updated value,
and expression that was used to perform the update. | public | ExpressionUpdateException(String message, String expression) Construct an ExpressionUpdateException with the given message, failed expression, expected updated value,
and expression that was used to perform the update. |
Method Summary | |
public Object | getUpdateValue() Get the value that should have been written to the object
referenced by the failed update expression. |
ExpressionUpdateException | public ExpressionUpdateException()(Code) | | Construct an ExpressionUpdateException.
|
ExpressionUpdateException | public ExpressionUpdateException(String message, String expression, Throwable cause)(Code) | | Construct an ExpressionUpdateException with the given message, failed expression, expected updated value,
and expression that was used to perform the update.
Parameters: message - a String containing the text of the exception message Parameters: expression - the expression whose update failed Parameters: cause - the Throwable that is wrapped as the cause of this exception |
ExpressionUpdateException | public ExpressionUpdateException(String message, String expression)(Code) | | Construct an ExpressionUpdateException with the given message, failed expression, expected updated value,
and expression that was used to perform the update.
Parameters: message - a String containing the text of the exception message Parameters: expression - the expression whose update failed |
getUpdateValue | public Object getUpdateValue()(Code) | | Get the value that should have been written to the object
referenced by the failed update expression. This method is deprecated
and will always return null because of the security risk associated
with making the value available.
the failed update value |
|
|