Remove dynamic exceptions
[anna.git] / example / core / showLogon / main.cpp
index 52f448c..da5aa84 100644 (file)
@@ -23,10 +23,10 @@ class Test : public app::Application {
 public:
    Test ();
    
-   void initialize () throw (RuntimeException);
+   void initialize () noexcept(false);
    
 private:
-   void  run () throw (RuntimeException);      
+   void  run () noexcept(false);      
 };
 
 using namespace std;
@@ -58,14 +58,14 @@ Test::Test () :
 }
 
 void Test::initialize () 
-   throw (RuntimeException)
+   noexcept(false)
 {
    Encoder::initialize ();   
    xml::functions::initialize ();
 }
 
 void Test::run () 
-   throw (RuntimeException)
+   noexcept(false)
 {
    CommandLine& commandLine (CommandLine::instantiate ());