]> SALOME platform Git repositories - modules/kernel.git/blob - src/Batch/Batch_APIInternalFailureException.hxx
Salome HOME
PR: mergefrom_BR_BATCH_22Oct04
[modules/kernel.git] / src / Batch / Batch_APIInternalFailureException.hxx
1 /*
2  * APIInternalFailureException.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
6  * Date   : Thu Nov 20 15:15:41 2003
7  * Projet : Salome 2
8  *
9  */
10
11 #ifndef _APIINTERNALFAILUREEXCEPTION_H_
12 #define _APIINTERNALFAILUREEXCEPTION_H_
13
14
15 #include "Batch_GenericException.hxx"
16 #include "Batch_GenericException.hxx"
17
18 namespace Batch {
19
20   class APIInternalFailureException : public GenericException
21   {
22   public:
23                 // Constructeur
24     APIInternalFailureException(string ch = "undefined") : GenericException("APIInternalFailureException", ch) {}
25   };
26
27 }
28
29 #endif