If the debugger is attached and an uncaught exception occurs then I get the "paused" message on the device showing the line which errored and don't get the exception details dialog until I step or run the program.
Is this by design, a bug or an unavoidable consequence of the debugger architecture?
B4X:
Dim ba As Byte
If ba = Null Then 'exception causes pause here with no breakpoint set
...
End If