2006-03-01 00:25:17 -04:00
|
|
|
BaseException
|
2021-10-22 20:13:46 -03:00
|
|
|
├── BaseExceptionGroup
|
2022-01-22 16:48:56 -04:00
|
|
|
├── GeneratorExit
|
|
|
|
├── KeyboardInterrupt
|
|
|
|
├── SystemExit
|
2021-06-11 03:53:52 -03:00
|
|
|
└── Exception
|
|
|
|
├── ArithmeticError
|
|
|
|
│ ├── FloatingPointError
|
|
|
|
│ ├── OverflowError
|
|
|
|
│ └── ZeroDivisionError
|
|
|
|
├── AssertionError
|
|
|
|
├── AttributeError
|
|
|
|
├── BufferError
|
|
|
|
├── EOFError
|
2022-01-22 16:48:56 -04:00
|
|
|
├── ExceptionGroup [BaseExceptionGroup]
|
2021-06-11 03:53:52 -03:00
|
|
|
├── 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
|
2024-02-14 18:35:06 -04:00
|
|
|
│ ├── PythonFinalizationError
|
2021-06-11 03:53:52 -03:00
|
|
|
│ └── RecursionError
|
2022-01-22 16:48:56 -04:00
|
|
|
├── StopAsyncIteration
|
|
|
|
├── StopIteration
|
2021-06-11 03:53:52 -03:00
|
|
|
├── SyntaxError
|
2024-06-24 09:08:12 -03:00
|
|
|
│ └── _IncompleteInputError
|
2021-06-11 03:53:52 -03:00
|
|
|
│ └── IndentationError
|
|
|
|
│ └── TabError
|
|
|
|
├── SystemError
|
|
|
|
├── TypeError
|
|
|
|
├── ValueError
|
|
|
|
│ └── UnicodeError
|
|
|
|
│ ├── UnicodeDecodeError
|
|
|
|
│ ├── UnicodeEncodeError
|
|
|
|
│ └── UnicodeTranslateError
|
|
|
|
└── Warning
|
2022-01-22 16:48:56 -04:00
|
|
|
├── BytesWarning
|
2021-06-11 03:53:52 -03:00
|
|
|
├── DeprecationWarning
|
2022-01-22 16:48:56 -04:00
|
|
|
├── EncodingWarning
|
|
|
|
├── FutureWarning
|
|
|
|
├── ImportWarning
|
2021-06-11 03:53:52 -03:00
|
|
|
├── PendingDeprecationWarning
|
2022-01-22 16:48:56 -04:00
|
|
|
├── ResourceWarning
|
2021-06-11 03:53:52 -03:00
|
|
|
├── RuntimeWarning
|
|
|
|
├── SyntaxWarning
|
|
|
|
├── UnicodeWarning
|
2022-01-22 16:48:56 -04:00
|
|
|
└── UserWarning
|