]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/bases/Exception.hxx
Salome HOME
#18963 Change throw() -> noexcept
[modules/yacs.git] / src / bases / Exception.hxx
index 7564c0fbfa36d2bd1f0eeb826f49ffadddc839eb..ac4aada00281fbe48659b8816fbf4cea348969aa 100644 (file)
@@ -33,8 +33,8 @@ namespace YACS
     std::string _what;
   public:
     Exception(const std::string& what,int errNumber=0);
-    const char *what( void ) const throw ();
-    virtual ~Exception() throw ();
+    const char *what( void ) const noexcept;
+    virtual ~Exception() noexcept;
     int errNumber;
   };
 }