Google News
logo
PL/SQL - Quiz(MCQ)
What is the syntax of User-defined exceptions?
A)
EXCEPTION;
B)
DECLARE my-exception;
C)
DECLARE EXCEPTION;
D)
DECLARE my-exception EXCEPTION;

Correct Answer :   DECLARE my-exception EXCEPTION;


Explanation : DECLARE my-exception EXCEPTION is the syntax of user-defined exceptions.

Advertisement