RosettaCodeData/Task/Exceptions/PL-pgSQL/exceptions-1.sql
2023-07-01 13:44:08 -04:00

4 lines
103 B
SQL

begin
raise exception 'this is a generic user exception';
raise exception division_by_zero;
end;