Browse Source

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

git-svn-id: trunk@34986 -
michael 8 năm trước cách đây
mục cha
commit
c0f183258f
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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 }