* Made exceptions descendents of EParserError

git-svn-id: trunk@17610 -
This commit is contained in:
michael 2011-05-30 07:18:40 +00:00
parent ecf77c3fa3
commit 54dbfcdd38
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ Type
Property Strict : Boolean Read FStrict Write SetStrict;
end;
EJSONParser = Class(Exception);
EJSONParser = Class(EParserError);
implementation

View File

@ -46,7 +46,7 @@ type
tkUnknown
);
EScannerError = class(Exception);
EScannerError = class(EParserError);
{ TJSONScanner }