fix(debugger): handle all errors when generating description

This commit is contained in:
TopchetoEU 2024-04-07 12:33:26 +03:00
parent d6ede0b404
commit 6fb31be12c
Signed by: topchetoeu
GPG Key ID: 6531B8583E5F6ED4

View File

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