When you declare your own exception, you must ____ it explicitly
-
DECLARE
-
RAISE
-
PRAGMA
-
INITIATE
B
Correct answer
Explanation
In PL/SQL, user-defined exceptions must be explicitly raised using the RAISE statement when the error condition occurs. Unlike predefined exceptions that are raised automatically by Oracle, your custom exceptions need manual triggering with RAISE exception_name;. This allows controlled error handling for application-specific conditions.