
|
If you were logged in you would be able to see more operations.
|
|
|
|
In the following function handleError(), NestedErrorEvent has the wrong event type which results in an unhandled error event when loading an external XML with an invalid URI.
-- current 2.0 code
dispatchEvent(new NestedErrorEvent(msg, cause));
-- fix
dispatchEvent(new NestedErrorEvent(ErrorEvent.ERROR, cause, msg));
|
|
Description
|
In the following function handleError(), NestedErrorEvent has the wrong event type which results in an unhandled error event when loading an external XML with an invalid URI.
-- current 2.0 code
dispatchEvent(new NestedErrorEvent(msg, cause));
-- fix
dispatchEvent(new NestedErrorEvent(ErrorEvent.ERROR, cause, msg));
|
Show » |
|