I have the following procedure which is used by some applications:
procedure p1 is begin bla bla bla; end;
But there is no exception ha
If your error stays the same, change to
... exception when others then log_error(sqlcode, sqlerrm); raise; end; /
This is explained in the documentation.