Changeset 749 in Sophya for trunk/SophyaLib/BaseTools


Ignore:
Timestamp:
Mar 2, 2000, 11:52:36 AM (26 years ago)
Author:
ansari
Message:

Nouveau type d'exception - Reza 2/3/1000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BaseTools/pexceptions.h

    r552 r749  
    7171  public:
    7272    explicit ForbiddenError(const string& m, int id=0) : PError(m,id) {}
     73  };
     74
     75  // Calling a non available / not implemented method
     76  class NotAvailableOperation : public PException {
     77  public:
     78    explicit NotAvailableOperation(const string& m, int id=0) : PException(m,id) {}
    7379  };
    7480 
Note: See TracChangeset for help on using the changeset viewer.