Salome HOME
Increment version number (2.2.3)
[modules/kernel.git] / src / Batch / Batch_NotYetImplementedException.hxx
1 /*
2  * NotYetImplementedException.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
6  * Date   : Tue Nov 25 11:35:07 2003
7  * Projet : Salome 2
8  *
9  */
10
11 #ifndef _NOTYETIMPLEMENTEDEXCEPTION_H_
12 #define _NOTYETIMPLEMENTEDEXCEPTION_H_
13
14
15 #include "Batch_GenericException.hxx"
16 using namespace std;
17
18 namespace Batch {
19
20   class NotYetImplementedException : public GenericException
21   {
22   public:
23                 // Constructeur
24     NotYetImplementedException(string ch = "undefined") : GenericException("NotYetImplementedException", ch) {}
25   };
26
27 }
28
29 #endif
30