소스 검색

* Added EProgrammerNotFound and EInvalidOpException, by Silvio Clecio (bug ID 30627)

git-svn-id: trunk@34986 -
michael 8 년 전
부모
커밋
c0f183258f
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      rtl/objpas/sysutils/sysutilh.inc

+ 5 - 0
rtl/objpas/sysutils/sysutilh.inc

@@ -211,6 +211,9 @@ type
    ENoThreadSupport = Class(Exception);
    ENoWideStringSupport = Class(Exception);
    ENoDynLibsSupport = class(Exception);
+
+   EProgrammerNotFound = class(Exception);
+
    ENotImplemented = class(Exception);
 
    EArgumentException = class(Exception);
@@ -223,6 +226,8 @@ type
    EFileNotFoundException = class(Exception);
    EPathNotFoundException = class(Exception);
 
+   EInvalidOpException = class(Exception);
+
    ENoConstructException = class(Exception);
 
    { Exception handling routines }