Add ESigQuit Exception class and use it in exceptmap

git-svn-id: trunk@38586 -
This commit is contained in:
pierre 2018-03-21 10:28:33 +00:00
parent 5a8a3ddc21
commit 31620a9c94
2 changed files with 2 additions and 1 deletions

View File

@ -193,6 +193,7 @@ type
EAssertionFailed = Class(Exception);
EObjectCheck = Class(Exception);
EThreadError = Class(Exception);
ESigQuit = Class(Exception);
EPropReadOnly = class(Exception);
EPropWriteOnly = class(Exception);

View File

@ -371,7 +371,7 @@ const
(code: 229; cls: ESafecallException; msg: @SSafecallException),
(code: 231; cls: EConvertError; msg: @SiconvError),
(code: 232; cls: ENoThreadSupport; msg: @SNoThreadSupport),
(code: 233; cls: ENoWideStringSupport; msg: @SSigQuit),
(code: 233; cls: ESigQuit; msg: @SSigQuit),
(code: 234; cls: ENoWideStringSupport; msg: @SMissingWStringManager),
(code: 235; cls: ENoDynLibsSupport; msg: @SNoDynLibsSupport),
(code: 236; cls: EThreadError; msg: @SThreadError)