home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / air / update / events / StatusFileUpdateErrorEvent.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  828 b   |  27 lines

  1. package air.update.events
  2. {
  3.    import flash.events.ErrorEvent;
  4.    import flash.events.Event;
  5.    
  6.    public class StatusFileUpdateErrorEvent extends ErrorEvent
  7.    {
  8.       public static const FILE_UPDATE_ERROR:String = "fileUpdateError";
  9.       
  10.       public function StatusFileUpdateErrorEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = "", param5:int = 0)
  11.       {
  12.          super(param1,param2,param3,param4,param5);
  13.       }
  14.       
  15.       override public function toString() : String
  16.       {
  17.          return "[StatusFileUpdateErrorEvent (type=" + type + " text=" + text + " id=" + errorID + ")]";
  18.       }
  19.       
  20.       override public function clone() : Event
  21.       {
  22.          return new StatusFileUpdateErrorEvent(type,bubbles,cancelable,text,errorID);
  23.       }
  24.    }
  25. }
  26.  
  27.