Hi,
If you debug an application and an exception occurs anywhere, the you programm immediately continues.
It doesnt matter if the exception was caught.
Take for example these three functions:
baz(){
throw create RuntimeError
}
bar(){
long i
try
for i = 1 to 100
baz()
next
catch (RuntimeError Exc)
end try
}
foo(){
for i = 1 to 100
bar()
next
}
If you step over bar in foo you lose the debugger.
I have attached a quick testcase.
Does the debugger not support exceptions?