class ErrorEvent
package openfl.events
extends TextEvent › Event
extended by AsyncErrorEvent, IOErrorEvent, SecurityErrorEvent, UncaughtErrorEvent
Available on all platforms
An object dispatches an ErrorEvent object when an error causes an asynchronous operation to fail.
The ErrorEvent class defines only one type of error
event:
ErrorEvent.ERROR
. The ErrorEvent class also serves as the base
class for several other error event classes, including the AsyncErrorEvent,
IOErrorEvent, SecurityErrorEvent, SQLErrorEvent, and UncaughtErrorEvent
classes.
You can check for error
events that do not have any
listeners by registering a listener for the uncaughtError
(UncaughtErrorEvent.UNCAUGHT_ERROR) event.
An uncaught error also causes an error dialog box displaying the error event to appear when content is running in the debugger version of Flash Player or the AIR Debug Launcher(ADL) application.
Constructor
new (type:String, bubbles:Bool = false, cancelable:Bool = false, text:String = "", id:Int = 0)
Creates an Event object that contains information about error events. Event objects are passed as parameters to event listeners.
Parameters:
type | The type of the event. Event listeners can access this
information through the inherited |
---|---|
bubbles | Determines whether the Event object bubbles. Event
listeners can access this information through the
inherited |
cancelable | Determines whether the Event object can be canceled.
Event listeners can access this information through the
inherited |
text | Text to be displayed as an error message. Event
listeners can access this information through the
|
id | A reference number to associate with the specific error (supported in Adobe AIR only). |