Packagejp.progression.events
Classpublic class ExecuteErrorEvent
InheritanceExecuteErrorEvent Inheritance flash.events.ErrorEvent

非同期処理中にエラーが発生した場合に ExecuteErrorEvent オブジェクトが送出されます。


Example
  // ExecuteErrorEvent インスタンスを作成する
  var event:ExecuteErrorEvent = new ExecuteErrorEvent();
  



Public Properties
 PropertyDefined by
  errorObject : Error
[read-only] オブジェクトからスローされた例外を取得します。
ExecuteErrorEvent
  errorTarget : *
[read-only] 例外が送出された際の対象オブジェクトを取得します。
ExecuteErrorEvent
Public Methods
 MethodDefined by
  
ExecuteErrorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, errorTarget:Error = null, errorObject:* = null)
新しい ExecuteErrorEvent インスタンスを作成します。 Creates a new ExecuteErrorEvent object.
ExecuteErrorEvent
  
clone():Event
ExecuteErrorEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ExecuteErrorEvent subclass.
ExecuteErrorEvent
  
toString():String
指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ExecuteErrorEvent
Public Constants
 ConstantDefined by
  EXECUTE_ERROR : String = "executeError"
[static] error イベントオブジェクトの type プロパティ値を定義します。 The ExecuteErrorEvent.EXECUTE_ERROR constant defines the value of the type property of an error event object.
ExecuteErrorEvent
Property detail
errorObjectproperty
errorObject:Error  [read-only]

オブジェクトからスローされた例外を取得します。

Implementation
    public function get errorObject():Error
errorTargetproperty 
errorTarget:*  [read-only]

例外が送出された際の対象オブジェクトを取得します。

Implementation
    public function get errorTarget():*
Constructor detail
ExecuteErrorEvent()constructor
public function ExecuteErrorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, errorTarget:Error = null, errorObject:* = null)

新しい ExecuteErrorEvent インスタンスを作成します。 Creates a new ExecuteErrorEvent object.

Parameters
type:StringExecuteErrorEvent.type としてアクセス可能なイベントタイプです。 The type of the event, accessible as ExecuteErrorEvent.type.
 
bubbles:Boolean (default = false)ExecuteErrorEvent インスタンスがイベントフローのバブリング段階で処理されるかどうかを判断します。デフォルト値は false です。 Determines whether the ExecuteErrorEvent object participates in the bubbling stage of the event flow. The default value is false.
 
cancelable:Boolean (default = false)ExecuteErrorEvent インスタンスがキャンセル可能かどうかを判断します。デフォルト値は false です。 Determines whether the ExecuteErrorEvent object can be canceled. The default values is false.
 
errorTarget:Error (default = null)例外が送出された際の対象オブジェクトです。
 
errorObject:* (default = null)オブジェクトからスローされた例外です。
Method detail
clone()method
public override function clone():Event

ExecuteErrorEvent インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an ExecuteErrorEvent subclass.

Returns
Event元のオブジェクトと同じプロパティ値を含む新しい ExecuteErrorEvent インスタンスです。 A new ExecuteErrorEvent object that is identical to the original.
toString()method 
public override function toString():String

指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.
Constant detail
EXECUTE_ERRORconstant
public static const EXECUTE_ERROR:String = "executeError"

error イベントオブジェクトの type プロパティ値を定義します。 The ExecuteErrorEvent.EXECUTE_ERROR constant defines the value of the type property of an error event object.

See also