type
field and value or class instance is stored in the value field.
| Modifier and Type | Field and Description |
|---|---|
| private boolean | isReRaise
Whether the exception was re-raised, such as when a traceback is specified to 'raise', or via a 'finally' block. |
| private boolean | |
| private boolean | |
| public PyTraceback | traceback
The exception traceback object. |
| public PyObject | type
The python exception class (for class exception) or identifier (for string exception). |
| public PyObject | value
The exception instance (for class exception) or exception value (for string exception). |
| Access | Constructor and Description |
|---|---|
| public | |
| public | |
| public | |
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public static PyException | |
| public static String | Returns: String exception namea PyObject exception obj)Get the name of the exception's class |
| public Throwable | fillInStackTrace()
Overrides java. Fills in the execution stack trace. |
| public String | getMessage()
Overrides java. Returns the detail message string of this throwable. |
| public static boolean | Returns: true if an exceptiona PyObject obj)Determine whether obj is a Python exception class |
| public static boolean | Returns: true if an exception instancea PyObject obj)Determine whether obj is an Python exception instance |
| private static boolean | Returns: true if an exceptiona PyObject obj)Determine whether obj is a Python 3 exception class |
| public boolean | |
| public void | |
| public void | printStackTrace()
Overrides java. Prints this throwable and its backtrace to the standard error stream. |
| public synchronized void | printStackTrace(PrintStream
PrintStream to use for outputOverrides java. Prints this throwable and its backtrace to the specified print stream. |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public synchronized void | |
| public synchronized String | |
| public void | tracebackHere(PyFrame
the current PyFrame here)Register frame as having been visited in the traceback. |
| public void | tracebackHere(PyFrame
the current PyFrame here, boolean whether caller is a Python finally block isFinally)Register frame as having been visited in the traceback. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| isReRaise | back to summary |
|---|---|
| private boolean isReRaise Whether the exception was re-raised, such as when a traceback is specified to 'raise', or via a 'finally' block. | |
| normalized | back to summary |
|---|---|
| private boolean normalized | |
| printingStackTrace | back to summary |
|---|---|
| private boolean printingStackTrace | |
| traceback | back to summary |
|---|---|
| public PyTraceback traceback The exception traceback object. | |
| type | back to summary |
|---|---|
| public PyObject type The python exception class (for class exception) or identifier (for string exception). | |
| value | back to summary |
|---|---|
| public PyObject value The exception instance (for class exception) or exception value (for string exception). | |
| PyException | back to summary |
|---|---|
| public PyException() | |
| PyException | back to summary |
|---|---|
| public PyException(PyObject type) | |
| PyException | back to summary |
|---|---|
| public PyException(PyObject type, PyObject value) | |
| PyException | back to summary |
|---|---|
| public PyException(PyObject type, PyObject value, PyTraceback traceback) | |
| PyException | back to summary |
|---|---|
| public PyException(PyObject type, String value) | |
| doRaise | back to summary |
|---|---|
| public static PyException doRaise(PyObject type, PyObject value, PyObject traceback) Logic for the raise statement
a PyException wrapper | |
| exceptionClassName | back to summary |
|---|---|
| public static String exceptionClassName(PyObject obj) Get the name of the exception's class | |
| fillInStackTrace | back to summary |
|---|---|
| public Throwable fillInStackTrace() Overrides java. Doc from java. Fills in the execution stack trace. This method records within this
If the stack trace of this | |
| getMessage | back to summary |
|---|---|
| public String getMessage() Overrides java. Doc from java. Returns the detail message string of this throwable. | |
| isExceptionClass | back to summary |
|---|---|
| public static boolean isExceptionClass(PyObject obj) Determine whether obj is a Python exception class
| |
| isExceptionInstance | back to summary |
|---|---|
| public static boolean isExceptionInstance(PyObject obj) Determine whether obj is an Python exception instance
| |
| isPy3kExceptionClass | back to summary |
|---|---|
| private static boolean isPy3kExceptionClass(PyObject obj) Determine whether obj is a Python 3 exception class
| |
| match | back to summary |
|---|---|
| public boolean match(PyObject exc) Determine if this PyException is a match for exc.
| |
| normalize | back to summary |
|---|---|
| public void normalize() Instantiates the exception value if it is not already an instance. | |
| printStackTrace | back to summary |
|---|---|
| public void printStackTrace() Overrides java. Doc from java. Prints this throwable and its backtrace to the
standard error stream. This method prints a stack trace for this
This example was produced by running the program:
class MyClass {
public static void main(String[] args) {
crunch(null);
}
static void crunch(int[] a) {
mash(a);
}
static void mash(int[] b) {
System.out.println(b[0]);
}
}
The backtrace for a throwable with an initialized, non-null cause
should generally include the backtrace for the cause. The format
of this information depends on the implementation, but the following
example may be regarded as typical:
HighLevelException: MidLevelException: LowLevelException
at Junk.a(Junk.java:13)
at Junk.main(Junk.java:4)
Caused by: MidLevelException: LowLevelException
at Junk.c(Junk.java:23)
at Junk.b(Junk.java:17)
at Junk.a(Junk.java:11)
... 1 more
Caused by: LowLevelException
at Junk.e(Junk.java:30)
at Junk.d(Junk.java:27)
at Junk.c(Junk.java:21)
... 3 more
Note the presence of lines containing the characters "...".
These lines indicate that the remainder of the stack trace for this
exception matches the indicated number of frames from the bottom of the
stack trace of the exception that was caused by this exception (the
"enclosing" exception). This shorthand can greatly reduce the length
of the output in the common case where a wrapped exception is thrown
from the same method as the "causative exception" is caught. The above
example was produced by running the program:
public class Junk {
public static void main(String args[]) {
try {
a();
} catch(HighLevelException e) {
e.printStackTrace();
}
}
static void a() throws HighLevelException {
try {
b();
} catch(MidLevelException e) {
throw new HighLevelException(e);
}
}
static void b() throws MidLevelException {
c();
}
static void c() throws MidLevelException {
try {
d();
} catch(LowLevelException e) {
throw new MidLevelException(e);
}
}
static void d() throws LowLevelException {
e();
}
static void e() throws LowLevelException {
throw new LowLevelException();
}
}
class HighLevelException extends Exception {
HighLevelException(Throwable cause) { super(cause); }
}
class MidLevelException extends Exception {
MidLevelException(Throwable cause) { super(cause); }
}
class LowLevelException extends Exception {
}
As of release 7, the platform supports the notion of
suppressed exceptions (in conjunction with the try-with-resources statement). Any exceptions that were
suppressed in order to deliver an exception are printed out
beneath the stack trace. The format of this information
depends on the implementation, but the following example may be
regarded as typical:
Exception in thread "main" java.lang.Exception: Something happened
at Foo.bar(Foo.java:10)
at Foo.main(Foo.java:5)
Suppressed: Resource$CloseFailException: Resource ID = 0
at Resource.close(Resource.java:26)
at Foo.bar(Foo.java:9)
... 1 more
Note that the "... n more" notation is used on suppressed exceptions
just as it is used on causes. Unlike causes, suppressed exceptions are
indented beyond their "containing exceptions."
An exception can have both a cause and one or more suppressed exceptions:
Exception in thread "main" java.lang.Exception: Main block
at Foo3.main(Foo3.java:7)
Suppressed: Resource$CloseFailException: Resource ID = 2
at Resource.close(Resource.java:26)
at Foo3.main(Foo3.java:5)
Suppressed: Resource$CloseFailException: Resource ID = 1
at Resource.close(Resource.java:26)
at Foo3.main(Foo3.java:5)
Caused by: java.lang.Exception: I did it
at Foo3.main(Foo3.java:8)
Likewise, a suppressed exception can have a cause:
Exception in thread "main" java.lang.Exception: Main block
at Foo4.main(Foo4.java:6)
Suppressed: Resource2$CloseFailException: Resource ID = 1
at Resource2.close(Resource2.java:20)
at Foo4.main(Foo4.java:5)
Caused by: java.lang.Exception: Rats, you caught me
at Resource2$CloseFailException.<init>(Resource2.java:45)
... 2 more
| |
| printStackTrace | back to summary |
|---|---|
| public synchronized void printStackTrace(PrintStream s) Overrides java. Doc from java. Prints this throwable and its backtrace to the specified print stream.
| |
| refersDirectlyTo | back to summary |
|---|---|
| public boolean refersDirectlyTo(PyObject ob) Implements org. Doc from org. Optional operation.
Should only be implemented if it is more efficient
than calling
| |
| super__printStackTrace | back to summary |
|---|---|
| public synchronized void super__printStackTrace(PrintWriter w) | |
| toString | back to summary |
|---|---|
| public synchronized String toString() Overrides java. Doc from java. Returns a short description of this throwable. The result is the concatenation of:
getLocalizedMessage returns null, then just
the class name is returned.
| |
| tracebackHere | back to summary |
|---|---|
| public void tracebackHere(PyFrame here) Register frame as having been visited in the traceback.
| |
| tracebackHere | back to summary |
|---|---|
| public void tracebackHere(PyFrame here, boolean isFinally) Register frame as having been visited in the traceback.
| |
| traverse | back to summary |
|---|---|
| public int traverse(Visitproc visit, Object arg) Implements org. Doc from org. Traverses all directly contained
| |