Please tell me whether there is a chance of getting two on condition errors simultaneously. Up to my knowledge, I hope when the first On condition error occurs itself, the program gets abend unless and otherwise the On condition is handled. Please tell me whether i am correct or wrong.
For example:
On Fixedoverflow
begin;
----
end;
On Sizecondition
begin;
----
end;
----
----
Will I get the both the errors simultaneously. If it is so then anyone please tell me which On condition will be handled first. If the On condition is not handled what will happen?