1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-20 19:57:12 +01:00

Don't catch application exceptions in the entity instance destruction because they probably left the VM stack in an invalid state and the server should be allowed to crash.

This commit is contained in:
Sandu Liviu Catalin 2016-08-26 17:21:50 +03:00
parent a9ae69ce5e
commit e953406b7f

View File

@ -37,14 +37,6 @@ namespace SqMod {
*/ LogErr("Squirrel exception caught " action); /*
*/ Logger::Get().Debug("%s", e.what()); /*
*/ } /*
*/ catch (const std::exception & e) /*
*/ { /*
*/ LogErr("Program exception caught " action " [%s]", e.what()); /*
*/ } /*
*/ catch (...) /*
*/ { /*
*/ LogErr("Unknown exception caught " action); /*
*/ } /*
*/
// ------------------------------------------------------------------------------------------------