Salome HOME
PR: new python function getShortHostName() in Utils_Identity.py, based on socket...
[modules/yacs.git] / src / Batch / Batch_InvalidKeyException.hxx
1 /*
2  * InvalidKeyException.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
6  * Date   : Wed Oct 15 10:39:51 2003
7  * Projet : Salome 2
8  *
9  */
10
11 #ifndef _INVALIDKEYEXCEPTION_H_
12 #define _INVALIDKEYEXCEPTION_H_
13
14
15 #include "Batch_GenericException.hxx"
16 #include "Batch_GenericException.hxx"
17
18 namespace Batch {
19
20   class InvalidKeyException : public GenericException
21   {
22   public:
23                 // Constructeur
24     InvalidKeyException(std::string ch = "undefined") : GenericException("InvalidKeyException", ch) {}
25
26   protected:
27
28   private:
29
30   };
31
32 }
33
34 #endif
35