X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcore%2FshowLogon%2Fmain.cpp;fp=example%2Fcore%2FshowLogon%2Fmain.cpp;h=da5aa84e5adb326b67c5acbbc58c18f676584244;hp=52f448c6e1a85785e0a0458aa85c1f2fc3d5ac38;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/core/showLogon/main.cpp b/example/core/showLogon/main.cpp index 52f448c..da5aa84 100644 --- a/example/core/showLogon/main.cpp +++ b/example/core/showLogon/main.cpp @@ -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 ());