Salome HOME
Bug fix: bounding box for quadratic elements spaceDim=2/meshDim=1 (i.e. SEG3)
[tools/medcoupling.git] / src / INTERP_KERNEL / Bases / InterpKernelException.hxx
index 3b573c0240935a013fa51a7bd8de4cf0d8957903..ff97d4d2b78dadb4e0fdb82d9e44bb6c2bf68115 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 
 namespace INTERP_KERNEL
 {
-  class INTERPKERNEL_EXPORT Exception : public std::exception
+  class Exception : public std::exception
   {
   public:
-    Exception(const char *reason);
-    Exception(const char *reason, const char *file, int line);
-    ~Exception() throw ();
-    const char *what() const throw();
+    INTERPKERNEL_EXPORT Exception(const char *reason);
+    INTERPKERNEL_EXPORT Exception(const char *reason, const char *file, int line);
+    INTERPKERNEL_EXPORT ~Exception() throw ();
+    INTERPKERNEL_EXPORT const char *what() const throw();
   protected:
     std::string _reason;
   };