Claus Pedersen
Member³
I can not see that this bug has been reported before, but user defined exceptions are not syntax highlighted.
E.g.
Variable my_variable is highlighted as expected, but my_exception is not.
E.g.
SQL:
DECLARE
my_exception EXCEPTION;
my_variable NUMBER;
BEGIN
my_variable := 2;
IF my_variable = 3 THEN
RAISE my_exception;
END IF;
END;
Variable my_variable is highlighted as expected, but my_exception is not.