The Callback Exception object is used to return errors from any callbacks. Any errors are always routed to the callbackErrorHandler specified on the client control (or parameter if available).
Most framework errors that occur as part of a callback will fire the callback handler. This includes network and security errors from XmlHttp, server side execution or routing errors, as well as possible control assignment (for Panel operations).
Class Members
Member | Description | |
---|---|---|
isCallbackError |
This is a marker property that lets any calling code check if the callback result is an Exception. | |
message |
The error message for the error that occurred. This message can be the result of the operational processing (XmlHttp), or Javascript parsing of the response, or more likely contain the result of a server side exception. |
Example
function HelloWorld() { Callback.Helloworld("Rick",HelloWorldCallback,OnPageError); } function HelloWorldCallbac(Result) { alert(Result); } function OnPageError(CallbackException) { alert("Page Error: " + CallbackException.message); }
See also:
Class CallbackException© West Wind Technologies, 1996-2016 • Updated: 10/03/08
Comment or report problem with topic