Salome HOME
PR: mergefrom_BR_CCRT_11Nov04
[modules/kernel.git] / src / Batch / Batch_ListIsFullException.hxx
1 /*
2  * ListIsFullException.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Date   : Septembre 2003
6  * Projet : SALOME 2
7  *
8  */
9
10 #ifndef _LISTISFULLEXCEPTION_H_
11 #define _LISTISFULLEXCEPTION_H_
12
13 #include "Batch_GenericException.hxx"
14
15 namespace Batch {
16
17   class ListIsFullException : public GenericException
18   {
19   public:
20                 // Constructeur
21     ListIsFullException(std::string ch = "undefined") : GenericException("ListIsFullException", ch) {}
22   };
23
24 }
25
26 #endif
27