Where can I find a full list of all predefined Oracle pl/SQL Exceptions?
In this link i found this list, are there anymore?
ACCESS_INTO_NULL ORA-06530
In addition to your question: what is the name of exception, risen when ORA-03135: connection lost contact
error appears. How can I handle it?
The solution is to define a new exception and associate it with an error code:
exception connection_error;
pragma exception_init(connection_error, -3135);
...
exception
when connection_error then
...
http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14261/exceptioninit_pragma.htm