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