Salome HOME
#18963 Additional changes: throw() -> noexcept
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationException.hxx
index b3070dc8abd0ba3d72f6a87f8c288cd3588b8dec..c3ef7a37d471140c899def7feebb7373890fdca1 100644 (file)
@@ -42,9 +42,9 @@ public:
       this->_msg = oss.str();
     }
 
-  virtual ~MEDPresentationException() throw() {}
+  virtual ~MEDPresentationException() noexcept {}
 
-  virtual const char* what() const throw() {
+  virtual const char* what() const noexcept {
     return this->_msg.c_str();
   }