From 01156a314178f963811e7bf5357a5adcd42a0799 Mon Sep 17 00:00:00 2001 From: chatlanin Date: Fri, 18 Apr 2025 13:48:27 +0300 Subject: [PATCH] no throw --- src/event/event_manager.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/event/event_manager.hpp b/src/event/event_manager.hpp index 6f17cb5..63ba332 100755 --- a/src/event/event_manager.hpp +++ b/src/event/event_manager.hpp @@ -28,17 +28,17 @@ namespace VE catch(std::exception& ext) { hack::error()("call function is error:", ext.what()); - hack::exception ex; - ex.system_error(ext); - ex.set_data(e); - throw ex; + // hack::exception ex; + // ex.system_error(ext); + // ex.set_data(e); + // throw ex; } catch(...) { - hack::error()("call function is errorI:", "oopps..."); - hack::exception ex; - ex.set_data(e); - throw ex; + hack::error()("call function is error:", "oopps..."); + // hack::exception ex; + // ex.set_data(e); + // throw ex; } }