Remove dynamic exceptions
[anna.git] / include / anna / test / Menu.hpp
index 6e9447c..58e3c5d 100644 (file)
@@ -32,15 +32,15 @@ public:
 
    Menu (anna::comm::Communicator*);
 
-   void paint () const throw ();
+   void paint () const ;
 
 private:   
    Data a_data;
    int a_status;
 
-   void initialize () throw (anna::RuntimeException) {;}
-   void apply () throw (anna::RuntimeException);
-   void finalize () throw () {;}
+   void initialize () noexcept(false) {;}
+   void apply () noexcept(false);
+   void finalize () {;}
 
 };