If you are in a step by step debug, the "Attempt to invoke virtual method 'boolean java.lang.Object.equals(java.lang.Object)' on a null object reference" error is not fired.
Using the breakpoint and pressing F8 will not generate the exception.
Regards
Example:
Try
Dim testmap As Map
testmap.Initialize
'A breakpoint here
If testmap.Get("notexist") = "B" Then
ToastMessageShow("Never", True)
End If
ToastMessageShow("No Catch", True)
Catch
ToastMessageShow(LastException, True)
End Try
Using the breakpoint and pressing F8 will not generate the exception.
Regards