home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / messaging / errors / MessagingError.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  506 b   |  26 lines

  1. package mx.messaging.errors
  2. {
  3.    public class MessagingError extends Error
  4.    {
  5.       public function MessagingError(param1:String)
  6.       {
  7.          super(param1);
  8.       }
  9.       
  10.       public function toString() : String
  11.       {
  12.          var _loc1_:* = "[MessagingError";
  13.          if(message != null)
  14.          {
  15.             _loc1_ += " message=\'" + message + "\']";
  16.          }
  17.          else
  18.          {
  19.             _loc1_ += "]";
  20.          }
  21.          return _loc1_;
  22.       }
  23.    }
  24. }
  25.  
  26.