| java.lang.Object org.apache.beehive.netui.pageflow.internal.BindingUpdateError
BindingUpdateError | public class BindingUpdateError implements java.io.Serializable(Code) | | Encapsulation of an error that happens when a databinding expression is applied on POST.
|
BindingUpdateError | public BindingUpdateError(String expression, String message, Throwable cause)(Code) | | Constructor to initialize all values.
Parameters: expression - the expression associated with this error. Parameters: message - the error message. Parameters: cause - the Throwable that caused the error. |
getCause | public Throwable getCause()(Code) | | Get the cause of the error.
the Throwable that caused the error. |
getExpression | public String getExpression()(Code) | | Get the expression associated with this error.
a String containing the expression associated with this error. |
getMessage | public String getMessage()(Code) | | Get the error message.
a String containing the error message. |
setCause | public void setCause(Throwable cause)(Code) | | Set the cause of the error.
Parameters: cause - the Throwable that caused the error. |
setExpression | public void setExpression(String expression)(Code) | | Set the expression associated with this error.
Parameters: expression - a String containing the expression associated with this error. |
setMessage | public void setMessage(String message)(Code) | | Set the error message.
Parameters: message - a String containing the error message. |
|
|