with (classes) {

with (dom) {

with (events) {

if (classes.EventException) events.EventException = classes.EventException;
else {

events.EventException = function (err_code)
{
 this.code = err_code;

 // Note May 23rd '06: this is not currently used

 return this;
}

EventException.UNSPECIFIED_EVENT_TYPE_ERR = 0;
EventException.DISPATCH_REQUEST_ERR = 1;

}

}

}

}
