declare
a number :='&args';
e exception;
begin
if a=1 then
raise e; --raise 抛出异常
end if;
exception
when e then
dbms_output.put_line('a不能为1');
when others then
dbms_output.put_line('#########');
end;