home *** CD-ROM | disk | FTP | other *** search
/ One Click 5 / ONCE005.iso / Interface / it.dig / scripts / __Packages / mx / data / components / datasetclasses / DataSetError.as < prev    next >
Encoding:
Text File  |  2006-06-12  |  200 b   |  12 lines

  1. class mx.data.components.datasetclasses.DataSetError extends Error
  2. {
  3.    function DataSetError(msg)
  4.    {
  5.       super(msg);
  6.    }
  7.    function toString()
  8.    {
  9.       return this.message;
  10.    }
  11. }
  12.