हां। आपको बस RAISE_APPLICATION_ERROR
का उपयोग करना है समारोह। अगर आप भी अपने अपवाद को नाम देना चाहते हैं, तो आपको EXCEPTION_INIT
का उपयोग करना होगा pragma त्रुटि संख्या को नामित अपवाद से जोड़ने के लिए। कुछ इस तरह
SQL> ed
Wrote file afiedt.buf
1 declare
2 ex_custom EXCEPTION;
3 PRAGMA EXCEPTION_INIT( ex_custom, -20001 );
4 begin
5 raise_application_error( -20001, 'This is a custom error' );
6 exception
7 when ex_custom
8 then
9 dbms_output.put_line( sqlerrm );
10* end;
SQL> /
ORA-20001: This is a custom error
PL/SQL procedure successfully completed.