reprexlite.exceptions¶
Classes¶
BlackNotFoundError
¶
Bases: ModuleNotFoundError, ReprexliteException
Raised when ipython cannot be found when using a black-dependent feature.
Source code in reprexlite/exceptions.py
5 6 | |
IPythonNotFoundError
¶
Bases: ModuleNotFoundError, ReprexliteException
Raised when ipython cannot be found when using an IPython-dependent feature.
Source code in reprexlite/exceptions.py
25 26 | |
InputSyntaxError
¶
Bases: SyntaxError, ReprexliteException
Raised when encountering a syntax error when parsing input.
Source code in reprexlite/exceptions.py
9 10 | |
NotAFormatterError
¶
Bases: TypeError, ReprexliteException
Raised when registering a formatter that is not a subclass of the Formatter base class.
Source code in reprexlite/exceptions.py
37 38 | |
PygmentsNotFoundError
¶
Bases: ModuleNotFoundError, ReprexliteException
Raised when pygments cannot be found when using a pygments-dependent feature.
Source code in reprexlite/exceptions.py
45 46 | |
ReprexliteException
¶
Bases: Exception
Base class for reprexlite exceptions.
Source code in reprexlite/exceptions.py
1 2 | |
UnexpectedError
¶
Bases: ReprexliteException
Raised when an unexpected case happens.
Source code in reprexlite/exceptions.py
49 50 51 52 53 54 55 56 57 58 59 | |