| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- BaseException
- ├── BaseExceptionGroup
- ├── GeneratorExit
- ├── KeyboardInterrupt
- ├── SystemExit
- └── Exception
- ├── ArithmeticError
- │ ├── FloatingPointError
- │ ├── OverflowError
- │ └── ZeroDivisionError
- ├── AssertionError
- ├── AttributeError
- ├── BufferError
- ├── EOFError
- ├── ExceptionGroup [BaseExceptionGroup]
- ├── ImportError
- │ └── ModuleNotFoundError
- ├── LookupError
- │ ├── IndexError
- │ └── KeyError
- ├── MemoryError
- ├── NameError
- │ └── UnboundLocalError
- ├── OSError
- │ ├── BlockingIOError
- │ ├── ChildProcessError
- │ ├── ConnectionError
- │ │ ├── BrokenPipeError
- │ │ ├── ConnectionAbortedError
- │ │ ├── ConnectionRefusedError
- │ │ └── ConnectionResetError
- │ ├── FileExistsError
- │ ├── FileNotFoundError
- │ ├── InterruptedError
- │ ├── IsADirectoryError
- │ ├── NotADirectoryError
- │ ├── PermissionError
- │ ├── ProcessLookupError
- │ └── TimeoutError
- ├── ReferenceError
- ├── RuntimeError
- │ ├── NotImplementedError
- │ └── RecursionError
- ├── StopAsyncIteration
- ├── StopIteration
- ├── SyntaxError
- │ └── IndentationError
- │ └── TabError
- ├── SystemError
- ├── TypeError
- ├── ValueError
- │ └── UnicodeError
- │ ├── UnicodeDecodeError
- │ ├── UnicodeEncodeError
- │ └── UnicodeTranslateError
- └── Warning
- ├── BytesWarning
- ├── DeprecationWarning
- ├── EncodingWarning
- ├── FutureWarning
- ├── ImportWarning
- ├── PendingDeprecationWarning
- ├── ResourceWarning
- ├── RuntimeWarning
- ├── SyntaxWarning
- ├── UnicodeWarning
- └── UserWarning
|