declare
aa number;
begin 
aa:=4;
exception
  when others then 
    dbms_output.put_line('失败');
end;
/