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