Hi!
I want to add a procedure which logs exception code, message and stack to some table.
Something like:
...
EXCEPTION
WHEN OTHERS
THEN
exception_log_obj.log_current;
RAISE;
END;
Where I have to put it to catch ALL exceptions raised in a page (SQL report, buttons with their PL/SQL processes etc.)?
Regards,
Al