Salome HOME
6bb0f78e3b1f4b51648f6cfae0ed3a0a3c850491
[modules/med.git] / src / MEDMEM / MEDMEM_Exception.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 /*
24  File MedException.hxx
25 */
26
27 #ifndef MEDEXCEPTION_HXX
28 #define MEDEXCEPTION_HXX
29
30 #include <MEDMEM.hxx>
31
32 #include <exception>
33 #include <iostream>
34
35 using namespace std;
36
37 #ifndef LOCALIZED
38 #define LOCALIZED(message) static_cast<const char *> (message) , __FILE__ , __LINE__
39 #endif
40
41 #define MED_EXCEPTION MEDMEM::MEDEXCEPTION
42
43 /*!
44   Class used to throws exception.\n
45   Inherits from public exception.
46 */
47 namespace MEDMEM {
48   class MEDEXCEPTION;
49   MEDMEM_EXPORT ostream & operator<< (ostream &os, const MEDEXCEPTION &ex );
50 //--------------------------------------//
51   class MEDMEM_EXPORT MEDEXCEPTION : public std::exception
52 //--------------------------------------//
53 {
54 private :
55   MEDEXCEPTION(void);
56
57 protected :
58   char* _text ;
59
60 public :
61   MEDEXCEPTION(const char *text, const char *fileName=0, 
62                const unsigned int lineNumber=0 );
63   MEDEXCEPTION(const MEDEXCEPTION &ex );
64   ~MEDEXCEPTION() throw ();
65   friend ostream & operator<< (ostream &os, const MEDEXCEPTION &ex );
66   virtual const char *what(void) const throw () ;
67 } ;
68
69
70 //---------------------------------------------------------//
71 class MEDMEM_EXPORT MED_DRIVER_NOT_FOUND_EXCEPTION : public MEDEXCEPTION
72 //---------------------------------------------------------//
73 {
74 private :
75   MED_DRIVER_NOT_FOUND_EXCEPTION(void);
76
77 public :
78   MED_DRIVER_NOT_FOUND_EXCEPTION(const char *text, const char *fileName=0, 
79                                  const unsigned int lineNumber=0 );
80   MED_DRIVER_NOT_FOUND_EXCEPTION(const MED_DRIVER_NOT_FOUND_EXCEPTION &ex );
81   ~MED_DRIVER_NOT_FOUND_EXCEPTION() throw();
82
83 };
84 }
85
86 #endif  /* MEDEXCEPTION_HXX */