Exceptions/Catch an exception thrown in a nested call: Difference between revisions

Content added Content deleted
m (trivial editing of presentation)
Line 1,499: Line 1,499:
m = foo();
m = foo();
end test;
end test;
</lang>



DESCRIPTION OF EXECUTION:
DESCRIPTION OF EXECUTION:
<pre>

Function FOO is invoked.
Function FOO is invoked.
FOO invokes BAR. BAR invoked BAZ.
FOO invokes BAR. BAR invoked BAZ.
Line 1,526: Line 1,526:
by a SIGNAL statement and the condition U1 was signaled.
by a SIGNAL statement and the condition U1 was signaled.
At offset +0000010D in procedure with entry FOO
At offset +0000010D in procedure with entry FOO
</lang>
</pre>


=={{header|Python}}==
=={{header|Python}}==