| Modifier and Type | Field and Description |
|---|---|
| public PyObject | __dict__
Exception's underlying dictionary, lazily created. |
| public PyObject | args
Exception's arguments. |
| private PyObject | message
Exception message. |
| public static final PyType |
| Access | Constructor and Description |
|---|---|
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __findattr_ex__(String name)
Overrides org. Attribute lookup hook. |
| public PyObject | __getitem__(PyObject
the key to lookup in this container. index)Overrides org. Equivalent to the standard Python __getitem__ method. |
| public PyObject | |
| public void | |
| public PyObject | |
| public void | __setattr__(String
the name whose value will be set - must be an interned string . name, PyObject the value to set this name to value)Overrides org. A variant of the __setattr__ method which accepts a String as the key. |
| public PyObject | |
| public PyString | __str__()
Overrides org. Equivalent to the standard Python __str__ method. |
| public PyUnicode | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final void | |
| pack-priv final PyObject | |
| pack-priv final void | |
| pack-priv final PyObject | |
| pack-priv final PyString | |
| pack-priv final PyUnicode | |
| pack-priv final String | |
| public void | |
| private void | |
| public PyObject | |
| public PyObject | |
| public PyObject | |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public void | |
| public void | |
| public void | |
| public String | toString()
Overrides org. Returns a string representation of the object. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| __dict__ | back to summary |
|---|---|
| public PyObject __dict__ Exception's underlying dictionary, lazily created. | |
| args | back to summary |
|---|---|
| public PyObject args Exception's arguments.
| |
| message | back to summary |
|---|---|
| private PyObject message Exception message. | |
| TYPE | back to summary |
|---|---|
| public static final PyType TYPE | |
| PyBaseException | back to summary |
|---|---|
| public PyBaseException() | |
| PyBaseException | back to summary |
|---|---|
| public PyBaseException(PyType subType) | |
| __findattr_ex__ | back to summary |
|---|---|
| public PyObject __findattr_ex__(String name) Overrides org. Doc from org. Attribute lookup hook. If the attribute is not found, null may be returned or a
Py.AttributeError can be thrown, whatever is more correct, efficient and/or convenient for
the implementing class.
Client code should use | |
| __getitem__ | back to summary |
|---|---|
| public PyObject __getitem__(PyObject index) Overrides org. Doc from org. Equivalent to the standard Python __getitem__ method. This method should not be overridden.
Override the | |
| __getslice__ | back to summary |
|---|---|
| public PyObject __getslice__(PyObject start, PyObject stop) Overrides org.
| |
| __init__ | back to summary |
|---|---|
| public void __init__(PyObject[] args, String[] keywords) | |
| __reduce__ | back to summary |
|---|---|
| public PyObject __reduce__() Overrides org. Doc from org. Used for pickling. Default implementation calls object___reduce__. | |
| __setattr__ | back to summary |
|---|---|
| public void __setattr__(String name, PyObject value) Overrides org. Doc from org. A variant of the __setattr__ method which accepts a String as the key. This String must be interned.
| |
| __setstate__ | back to summary |
|---|---|
| public PyObject __setstate__(PyObject state) | |
| __str__ | back to summary |
|---|---|
| public PyString __str__() Overrides org. Doc from org. Equivalent to the standard Python __str__ method. The default implementation (in
| |
| __unicode__ | back to summary |
|---|---|
| public PyUnicode __unicode__() Overrides org.
| |
| BaseException___findattr__ | back to summary |
|---|---|
| pack-priv final PyObject BaseException___findattr__(String name) | |
| BaseException___getitem__ | back to summary |
|---|---|
pack-priv final PyObject BaseException___getitem__(PyObject index)
| |
| BaseException___getslice__ | back to summary |
|---|---|
pack-priv final PyObject BaseException___getslice__(PyObject start, PyObject stop)
| |
| BaseException___init__ | back to summary |
|---|---|
pack-priv final void BaseException___init__(PyObject[] args, String[] keywords)
| |
| BaseException___reduce__ | back to summary |
|---|---|
pack-priv final PyObject BaseException___reduce__()
| |
| BaseException___setattr__ | back to summary |
|---|---|
pack-priv final void BaseException___setattr__(String name, PyObject value)
| |
| BaseException___setstate__ | back to summary |
|---|---|
pack-priv final PyObject BaseException___setstate__(PyObject state)
| |
| BaseException___str__ | back to summary |
|---|---|
pack-priv final PyString BaseException___str__()
| |
| BaseException___unicode__ | back to summary |
|---|---|
pack-priv final PyUnicode BaseException___unicode__()
| |
| BaseException_toString | back to summary |
|---|---|
pack-priv final String BaseException_toString()
| |
| delMessage | back to summary |
|---|---|
public void delMessage()
| |
| ensureDict | back to summary |
|---|---|
| private void ensureDict() | |
| fastGetDict | back to summary |
|---|---|
| public PyObject fastGetDict() Overrides org. Doc from org. xxx implements where meaningful | |
| getDict | back to summary |
|---|---|
| public PyObject getDict() Overrides org. Doc from org. xxx implements where meaningful
| |
| getMessage | back to summary |
|---|---|
public PyObject getMessage()
| |
| 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
| |
| setArgs | back to summary |
|---|---|
public void setArgs(PyObject val)
| |
| setDict | back to summary |
|---|---|
| public void setDict(PyObject val) Overrides org.
| |
| setMessage | back to summary |
|---|---|
public void setMessage(PyObject value)
| |
| toString | back to summary |
|---|---|
| public String toString() Overrides org. Doc from java. Returns a string representation of the object.
Satisfying this method's contract implies a non- | |
| traverse | back to summary |
|---|---|
| public int traverse(Visitproc visit, Object arg) Implements org. Doc from org. Traverses all directly contained
| |