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.
Static variables
staticinlineread onlyERROR:EventType<ErrorEvent> = "error"
Defines the value of the type
property of an error
event object.
This event has the following properties:
Property | Value |
---|---|
bubbles | false |
cancelable | false ; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object experiencing a network operation failure. |
text | Text to be displayed as an error message. |
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). |
Variables
read onlyerrorID:Int
Contains the reference number associated with the specific error. For a
custom ErrorEvent object, this number is the value from the
id
parameter supplied in the constructor.