Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Exception.cpp
1 // Copyright (C) 2014-2016 CEA/DEN, EDF R&D
2
3 // File:        GeomAlgoAPI_Exception.cpp
4 // Created:     14 April 2016
5 // Author:      Clarisse Genrault (CEA)
6
7 #include <GeomAlgoAPI_Exception.h>
8
9 //=================================================================================================
10 GeomAlgoAPI_Exception::GeomAlgoAPI_Exception(std::string theMessageError)
11 : myMessageError(theMessageError)
12 {
13 }
14
15 //=================================================================================================
16 GeomAlgoAPI_Exception::~GeomAlgoAPI_Exception() throw()
17 {
18 }
19
20 //=================================================================================================
21 const char* GeomAlgoAPI_Exception::what() const throw()
22 {
23   return myMessageError.c_str();
24 }