How to re-raise pl/sql exception in exception handling block? How to re-raise pl/sql exception in exception handling block? oracle oracle

How to re-raise pl/sql exception in exception handling block?


If your error stays the same, change to

...exception when others then  log_error(sqlcode, sqlerrm);  raise;end;/

This is explained in the documentation.