Question on error handling [message #430273] |
Mon, 09 November 2009 21:03  |
ajitpal.s
Messages: 204 Registered: November 2006
|
Senior Member |
|
|
Hi,
I have a main procedure, which calls sub-procedures. And within the sub-procedures, there are more calls to multiple db objects (functions / package).
Lets say, if i include only one "exception when others block" at the main procedure, will it be able to capture the errors which occured in the lowest level of any procedure call.
|
|
|
|
|
|
|
Re: Question on error handling [message #430319 is a reply to message #430310] |
Tue, 10 November 2009 01:09   |
ajitpal.s
Messages: 204 Registered: November 2006
|
Senior Member |
|
|
the reason i wish to use this block is to catch all type of errors which occured in any procedure call.
EXCEPTION
WHEN OTHERS THEN
....
could you elaborate your point about being cautious, is there any specific areas i need to be concerned of.
|
|
|
|
|