home *** CD-ROM | disk | FTP | other *** search
- package it.gotoandplay.smartfoxserver.json
- {
- public class JSONParseError extends Error
- {
-
-
- private var _text:String;
-
- private var _location:int;
-
- public function JSONParseError(param1:String = "", param2:int = 0, param3:String = "")
- {
- super(param1);
- _location = param2;
- _text = param3;
- }
-
- public function get text() : String
- {
- return _text;
- }
-
- public function get location() : int
- {
- return _location;
- }
- }
- }
-