George Exceptions¶
Custom George exceptions.
GeorgeError(message: str | None = None, error_value: Any | None = None)
¶
Bases: Exception
George error exception.
Used for return values in the [ERROR]
section of functions in TVPaint's documentation.
Source code in pytvpaint/george/exceptions.py
14 15 16 17 18 |
|
NoObjectWithIdError(obj_id: int)
¶
Bases: pytvpaint.george.exceptions.GeorgeError
Exception raised when a TVPaint was not found given its id.
Source code in pytvpaint/george/exceptions.py
24 25 |
|