Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> java error handling question
I have the following segment java code in a stored procedure.
I am getting a rc of 3.
How can I print details of the java exception to a file?
try {
rc = p.waitFor(); } catch (InterruptedException intexc) { rc = 2; }
} catch (Throwable t) { rc = 3; }
JL Received on Wed Feb 11 2004 - 03:24:14 CST
![]() |
![]() |