I have a procedure P1 which is calling procedure P2. I need to handle the exception when P2 doesn't exist.
Currently it is throwing
Uncaught exception of type 'STATEMENT_ERROR' on line 3 at position 4 : SQL compilation error: Unknown user-defined function P2'
Is there any way to handle this exception differently?
P1()
BEGIN
call P2();
END;