From: Krzysztof Dynowski Date: Tue, 24 Oct 2017 10:38:51 +0000 (+0200) Subject: SVACE: fix NO_CATCH X-Git-Tag: submit/tizen_4.0/20171024.152729~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F11%2F157411%2F2;p=platform%2Fcore%2Fsecurity%2Ftef-simulator.git SVACE: fix NO_CATCH Change-Id: I91ebb7616216d26f68599513c257fad26a272f5b --- diff --git a/simulatordaemon/src/SimulatorDaemon.cpp b/simulatordaemon/src/SimulatorDaemon.cpp index 56160b3..f5928f1 100644 --- a/simulatordaemon/src/SimulatorDaemon.cpp +++ b/simulatordaemon/src/SimulatorDaemon.cpp @@ -125,6 +125,8 @@ int main() { } catch (std::exception& e) { syslog(LOG_ERR | LOG_USER, "Exception: %s", e.what()); LOGE(SIM_DAEMON, "Exception: %s", e.what()); + } catch (...) { + LOGE(SIM_DAEMON, "Unknown exception in SimulatorDaemon"); } stopServer(ioService::getInstance()); return result;