IOErrorEvent.hx 333 B

123456789
  1. package flash.events;
  2. extern class IOErrorEvent extends ErrorEvent {
  3. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?text : String, id : Int = 0) : Void;
  4. static final DISK_ERROR : String;
  5. static final IO_ERROR : String;
  6. static final NETWORK_ERROR : String;
  7. static final VERIFY_ERROR : String;
  8. }