fix(debugger): handle all errors when generating description

This commit is contained in:
2024-04-07 12:33:26 +03:00
parent d6ede0b404
commit 6fb31be12c

View File

@@ -397,7 +397,7 @@ public class SimpleDebugger implements Debugger {
catch (Exception e) { }
try { res.set("description", className + (defaultToString ? "" : " { " + Values.toString(ctx, obj) + " }")); }
catch (EngineException e) { }
catch (Exception e) { }
}