Salome HOME
PR: mergefrom_BR_BATCH_22Oct04
[modules/kernel.git] / src / Batch / Batch_RunTimeException.hxx
1 /*
2  * RunTimeException.hxx : 
3  *
4  * Auteur : %author% - EDF R&D
5  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
6  * Date   : Tue Nov 25 14:04:13 2003
7  * Projet : Salome 2
8  *
9  */
10
11 #ifndef _RUNTIMEEXCEPTION_H_
12 #define _RUNTIMEEXCEPTION_H_
13
14
15 #include "Batch_GenericException.hxx"
16
17 namespace Batch {
18
19   class RunTimeException : public GenericException
20   {
21   public:
22                 // Constructeur
23     RunTimeException(string ch = "undefined") : GenericException("RunTimeException", ch) {}
24   };
25
26 }
27
28 #endif