Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Exception.h
index 790af42b543df0dc8a5d103cc7d6b824e6871ca5..df0e54abd6c821ea806d0e8de49d4669134e8e51 100644 (file)
  */
 class GeomAlgoAPI_Exception : public std::exception
 {
- public: 
+ public:
   /// Create an exception
   /// \param theMessageError Error message to be displayed
   GEOMALGOAPI_EXPORT GeomAlgoAPI_Exception(std::string theMessageError);
-  /// Destroyer 
+  /// Destroyer
   GEOMALGOAPI_EXPORT ~GeomAlgoAPI_Exception() throw();
-  /// Allows to collet the error 
+  /// Allows to collet the error
   GEOMALGOAPI_EXPORT const char* what() const throw();
+
 private:
   std::string myMessageError; /// Error message to be displayed.
 };