使用者自定義的異常處理

2021-08-04 07:09:47 字數 656 閱讀 5934

當與乙個異常錯誤相關的錯誤出現時,就會隱含觸發該異常錯誤。使用者定義的異常錯誤是通過顯式使用 raise 語句來觸發。當引發乙個異常錯誤時,控制就轉向到 exception塊異常錯誤部分,執行錯誤處理**。 

對於這類異常情況的處理,步驟如下 :

在pl/sql 塊的宣告部分定義異常情況 :

《異常情況》  exception; 

raise 《異常情況》 

在pl/sql 塊的異常情況處理部分對異常情況做出相應的處理。 

例:declare

v_empno emp.empno%type :=&empno;

no_result  exception;

begin

update emp set sal=sal+100 where empno=v_empno;

if sql%notfound then

raise no_result;

end if;

exception

when no_result then 

dbms_output.put_line('你的資料更新語句失敗了!');

when others then

dbms_output.put_line(sqlcode||』---『||sqlerrm);

end; 

異常處理 自定義異常

異常 1.定義 執行時檢測到的錯誤。2.現象 當異常發生時,程式不會再向下執行,而轉到函式的呼叫語句。3.常見異常型別 名稱異常 nameerror 變數未定義。型別異常 typeerror 不同型別資料進行運算。索引異常 indexerror 超出索引範圍。屬性異常 attributeerror ...

自定義異常處理

自定義異常處理類 using system using system.diagnostics 日誌記錄類 using system using system.configuration using system.diagnostics using system.io using system.tex...

自定義異常處理

煙台大學計算機學院學生 all right reserved.檔名稱 c 完成日期 2014年10月16日 版本號 v1.0 對任務及求解方法的描述部分 輸入兩個數,輸出其相除的結果,並進行增加乙個自定義異常類outofboundexception,我的程式 using system using s...