org.python.core
Class PyException
RuntimeException
org.python.core.PyException
public class PyException
extends RuntimeException
A wrapper for all python exception. Note that the wellknown
python exception are not subclasses of PyException.
Instead the python exception class is stored in the
type
field and value or class instance is stored
in the value
field.
type
public PyObject type
The python exception class (for class exception) or
identifier (for string exception).
value
public PyObject value
The exception instance (for class exception) or exception
value (for string exception).
PyException
public PyException()
PyException
public PyException(PyObject type)
PyException
public PyException(PyObject type,
String value)
instantiate
public void instantiate()
printStackTrace
public void printStackTrace()
printStackTrace
public void printStackTrace(PrintStream s)
super__printStackTrace
public void super__printStackTrace(PrintWriter w)
toString
public String toString()
Jython homepage