home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / messaging / errors / MessagingError.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  531 b   |  27 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_:* = null;
  13.          _loc1_ = "[MessagingError";
  14.          if(message != null)
  15.          {
  16.             _loc1_ += " message=\'" + message + "\']";
  17.          }
  18.          else
  19.          {
  20.             _loc1_ += "]";
  21.          }
  22.          return _loc1_;
  23.       }
  24.    }
  25. }
  26.  
  27.