0
begin
begin
do something;
exception
when no_data_found then
raise_application_error(-20000,"Message");
end;
exception
when others then
raise_application_error(-20000,"Other message");
end;
我的問題是當編譯器捕獲「消息」錯誤時,它也會捕獲「其他消息」錯誤。爲什麼會發生?PL/SQL異常
真棒。謝謝 ! – user3682983