Subject EXCEPTION
Author Arcadio Ortega
CREATE EXCEPTION excepcion_1 'something';

BEGIN
....
EXCEPTION excepcion_1;
....
WHEN EXCEPTION excepcion_1
DO
BEGIN
.....
END
END


I would like to write:

BEGIN
.....
EXCEPTION excepcion_1;
....
WHEN ANY
DO
BEGIN
any variable containing 'excepcion_1';
END
END


Thank you

[Non-text portions of this message have been removed]