Predefined PL/sql Exceptions
An internal exception is raised implicitly whenever your PL/sql program violates an Oracle rule or exceeds a system-dependent limit. Every Oracle error has a number,but exceptions must be handled by name. So,PL/sql predefines some common Oracle errors as exceptions. For example,PL/sql raises the predefined exceptionNO_DATA_FOUND
if aSELECT
INTO
statement returns no rows.
To handle other Oracle errors,you can use theOTHERS
handler. The functionssqlCODE
andsqlERRM
are especially useful in theOTHERS
handler because they return the Oracle error code and message text. Alternatively,you can use the pragmaEXCEPTION_INIT
to associate exception names with Oracle error codes.
PL/sql declares predefined exceptions globally in packageSTANDARD
,which defines the PL/sql environment. So,you need not declare them yourself. You can write handlers for predefined exceptions using the names in the following list:
Exception | Oracle Error | sqlCODE Value |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Brief descriptions of the predefined exceptions follow:
Exception | Raised when ... |
---|---|
|
Your program attempts to assign values to the attributes of an uninitialized (atomically null) object. |
|
None of the choices in the |
|
Your program attempts to apply collection methods other than EXISTS to an uninitialized (atomically null) nested table or varray,or the program attempts to assign values to the elements of an uninitialized nested table or varray. |
|
Your program attempts to open an already open cursor. A cursor must be closed before it can be reopened. A cursor FOR loop automatically opens the cursor to which it refers. So,your program cannot open that cursor inside the loop. |
|
Your program attempts to store duplicate values in a database column that is constrained by a unique index. |
|
Your program attempts an illegal cursor operation such as closing an unopened cursor. |
|
In a sql statement,the conversion of a character string into a number fails because the string does not represent a valid number. (In procedural statements,VALUE_ERROR is raised.) This exception is also raised when the |
|
Your program attempts to log on to Oracle with an invalid username and/or password. |
|
A SELECT INTO statement returns no rows,or your program references a deleted element in a nested table or an uninitialized element in an index-by table. sql aggregate functions such as AVG and SUM always return a value or a null. So,a SELECT INTO statement that calls an aggregate function never raises NO_DATA_FOUND. The FETCH statement is expected to return no rows eventually,so when that happens,no exception is raised. |
|
Your program issues a database call without being connected to Oracle. |
|
PL/sql has an internal problem. |
|
The host cursor variable and PL/sql cursor variable involved in an assignment have incompatible return types. For example,when an open host cursor variable is passed to a stored subprogram,the return types of the actual and formal parameters must be compatible. |
|
Your program attempts to call a MEMBER method on a null instance. That is,the built-in parameter SELF (which is always the first parameter passed to a MEMBER method) is null. |
|
PL/sql runs out of memory or memory has been corrupted. |
|
Your program references a nested table or varray element using an index number larger than the number of elements in the collection. |
|
Your program references a nested table or varray element using an index number (-1 for example) that is outside the legal range. |
|
The conversion of a character string into a universal rowid fails because the character string does not represent a valid rowid. |
|
A time-out occurs while Oracle is waiting for a resource. |
|
A SELECT INTO statement returns more than one row. |
|
An arithmetic,conversion,truncation,or size-constraint error occurs. For example,when your program selects a column value into a character variable,if the value is longer than the declared length of the variable,PL/sql aborts the assignment and raises VALUE_ERROR. In procedural statements,VALUE_ERROR is raised if the conversion of a character string into a number fails. (In sql statements,INVALID_NUMBER is raised.) |
|
Your program attempts to divide a number by zero. |
Oracle PL/sql Exception 传送门:http://docs.oracle.com/cd/B10500_01/appdev.920/a96624/07_errs.htm