More Xojo WTF

further to the Xojo Forum thread

here’s my latest entry
https://tracker.xojo.com/xojoinc/xojo/-/issues/68791

Try
 
  Raise New NilObjectException
  
Catch noe As NilObjectException
  Break
  Raise noe
  
Catch knf As KeyNotFoundException
  Break
  
Catch rex As RuntimeException
  Break
  
End Try

the initial line Raise New NilObjectException is caught by Catch noe As NilObjectException

HOWEVER the Raise noe SHOULDNT be caught by Catch rex As RuntimeException
But it is

There’s a video on the bug report

ARG !