You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I get a HostException, I get a debugger showing me the primitive call where the exception occurred with only the exception name (HostException) as message. The root exception was an NPE, which has nil as its message. Additionally, HostExceptions are nested within each other with HostObject (not quite sure how this is structured).
It would be nice if I can view the stack trace of the root Java exception in TruffleSqueak.
The text was updated successfully, but these errors were encountered:
It seems that guest languages are not allowed to see stack frames of host Java.
In the meantime, I've pushed support for interop exceptions in the PolyglotInspector via 95f81e7.
When I get a HostException, I get a debugger showing me the primitive call where the exception occurred with only the exception name (
HostException
) as message. The root exception was an NPE, which hasnil
as its message. Additionally,HostExceptions
are nested within each other withHostObject
(not quite sure how this is structured).It would be nice if I can view the stack trace of the root Java exception in TruffleSqueak.
The text was updated successfully, but these errors were encountered: