|
Oracle9i Business Components for Java API Reference Oracle9i JDeveloper (9.0.4) B10391-01 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.RuntimeException | +--oracle.jbo.JboException | +--oracle.jbo.common.ampool.ApplicationPoolException
Field Summary |
Fields inherited from class oracle.jbo.JboException |
mHasPeerException |
Constructor Summary | |
ApplicationPoolException(java.lang.Class resBundleClass,
java.lang.String errorCode,
java.lang.Object[] params)
|
|
ApplicationPoolException(java.lang.Class resBundleClass,
java.lang.String errorCode,
java.lang.Object[] params,
java.lang.Exception[] excs)
|
Method Summary | |
SessionCookie |
getSessionCookie()
|
void |
printStackTrace()
Prints this Throwable and its backtrace to the
standard error stream. |
void |
printStackTrace(java.io.PrintStream s)
Prints this Throwable and its backtrace to the
specified print stream. |
void |
printStackTrace(java.io.PrintWriter s)
Prints this Throwable and its backtrace to the specified
print writer. |
void |
setSessionCookie(SessionCookie cookie)
|
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public ApplicationPoolException(java.lang.Class resBundleClass, java.lang.String errorCode, java.lang.Object[] params)
public ApplicationPoolException(java.lang.Class resBundleClass, java.lang.String errorCode, java.lang.Object[] params, java.lang.Exception[] excs)
Method Detail |
public void printStackTrace()
JboException
Throwable
and its backtrace to the
standard error stream. This method prints a stack trace for this
Throwable
object on the error output stream that is
the value of the field System.err
. The first line of
output contains the result of the Throwable.toString()
method for
this object. Remaining lines represent data previously recorded by
the method Throwable.fillInStackTrace()
. The format of this
information depends on the implementation, but the following
example may be regarded as typical:
This example was produced by running the program:java.lang.NullPointerException at MyClass.mash(MyClass.java:9) at MyClass.crunch(MyClass.java:6) at MyClass.main(MyClass.java:3)
class MyClass { public static void main(String[] argv) { crunch(null); } static void crunch(int[] a) { mash(a); } static void mash(int[] b) { System.out.println(b[0]); } }
printStackTrace
in class JboException
public void printStackTrace(java.io.PrintStream s)
JboException
Throwable
and its backtrace to the
specified print stream.
printStackTrace
in class JboException
public void printStackTrace(java.io.PrintWriter s)
JboException
Throwable
and its backtrace to the specified
print writer.
printStackTrace
in class JboException
public void setSessionCookie(SessionCookie cookie)
public SessionCookie getSessionCookie()
|
Oracle9i Business Components for Java API Reference Oracle9i JDeveloper (9.0.4) B10391-01 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1997, 2003, Oracle. All rights reserved.