Salome HOME
Porting to Mandrake 10.1 and new products:
[modules/kernel.git] / src / Batch / Batch_InvalidArgumentException.hxx
1 /*
2  * InvalidArgumentException.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
6  * Date   : Thu Oct 16 16:18:00 2003
7  * Projet : Salome 2
8  *
9  */
10
11 #ifndef _INVALIDARGUMENTEXCEPTION_H_
12 #define _INVALIDARGUMENTEXCEPTION_H_
13
14
15 #include "Batch_GenericException.hxx"
16 #include "Batch_GenericException.hxx"
17
18 namespace Batch {
19
20   class InvalidArgumentException : public GenericException
21   {
22   public:
23                 // Constructeur
24     InvalidArgumentException(std::string ch = "undefined") : GenericException("InvalidArgumentException", ch) {}
25   };
26
27 }
28
29 #endif
30