Exceptions are not syntax highlighted

Claus Pedersen

Member³
I can not see that this bug has been reported before, but user defined exceptions are not syntax highlighted.

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.
 
Back
Top