How do u ignore exceptions raised by a procedure or function within a package.Ex: Package a { Proc1; Func1; ---- raised an exception Proc2; Proc3; }Note : Even if Func1 raises an exception proc2 and proc3 must be excecuted.

Showing Answers 1 - 1 of 1 Answers

Mike Adams

  • Sep 6th, 2006
 

You can fix the function by adding On error resume next. At the end of the function you want this line to reset the error handling.On error go to 0

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions