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