Remove dynamic exceptions
[anna.git] / example / xml / xmlBinary / main.cpp
index 967f8da..fe50561 100644 (file)
@@ -20,7 +20,7 @@ public:
    Test ();
    
 private:
-   void run () throw (anna::RuntimeException);      
+   void run () noexcept(false);      
 };
 
 using namespace std;
@@ -57,7 +57,7 @@ Test::Test () :
 }
 
 void Test::run () 
-   throw (RuntimeException)
+   noexcept(false)
 {
    CommandLine& commandLine (CommandLine::instantiate ());