Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> java error handling question

java error handling question

From: John Leslie <johnleslie_at_madasafish.com>
Date: 11 Feb 2004 01:24:14 -0800
Message-ID: <4412dd31.0402110124.31960fc6@posting.google.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US