AsyncErrorEvent.hx 277 B

1234567
  1. package flash.events;
  2. extern class AsyncErrorEvent extends ErrorEvent {
  3. var error : flash.errors.Error;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?text : String, ?error : flash.errors.Error) : Void;
  5. static final ASYNC_ERROR : String;
  6. }