SHOW EXCEPtions
SHOW EXCEPtions [name]
This command displays all user-defined exceptions in the current database.Details of the exception’s error message and objects which use the exception — those which are dependant upon the exception — are also shown.You may display individual exception’s details with the second form of the command.
SQL> show exceptions; CUSTOMER_CHECK; Msg: Overdue balance -- can not ship.; Used by: SHIP_ORDER (Stored procedure) CUSTOMER_ON_HOLD; Msg: This customer is on hold.; Used by: SHIP_ORDER (Stored procedure) ... SQL> show exception customer_on_hold; CUSTOMER_ON_HOLD; Msg: This customer is on hold.; Used by: SHIP_ORDER (Stored procedure)