1BaseException
2 ├── BaseExceptionGroup
3 ├── GeneratorExit
4 ├── KeyboardInterrupt
5 ├── SystemExit
6 └── Exception
7      ├── ArithmeticError
8      │    ├── FloatingPointError
9      │    ├── OverflowError
10      │    └── ZeroDivisionError
11      ├── AssertionError
12      ├── AttributeError
13      ├── BufferError
14      ├── EOFError
15      ├── ExceptionGroup [BaseExceptionGroup]
16      ├── ImportError
17      │    └── ModuleNotFoundError
18      ├── LookupError
19      │    ├── IndexError
20      │    └── KeyError
21      ├── MemoryError
22      ├── NameError
23      │    └── UnboundLocalError
24      ├── OSError
25      │    ├── BlockingIOError
26      │    ├── ChildProcessError
27      │    ├── ConnectionError
28      │    │    ├── BrokenPipeError
29      │    │    ├── ConnectionAbortedError
30      │    │    ├── ConnectionRefusedError
31      │    │    └── ConnectionResetError
32      │    ├── FileExistsError
33      │    ├── FileNotFoundError
34      │    ├── InterruptedError
35      │    ├── IsADirectoryError
36      │    ├── NotADirectoryError
37      │    ├── PermissionError
38      │    ├── ProcessLookupError
39      │    └── TimeoutError
40      ├── ReferenceError
41      ├── RuntimeError
42      │    ├── NotImplementedError
43      │    └── RecursionError
44      ├── StopAsyncIteration
45      ├── StopIteration
46      ├── SyntaxError
47      │    └── IndentationError
48      │         └── TabError
49      ├── SystemError
50      ├── TypeError
51      ├── ValueError
52      │    └── UnicodeError
53      │         ├── UnicodeDecodeError
54      │         ├── UnicodeEncodeError
55      │         └── UnicodeTranslateError
56      └── Warning
57           ├── BytesWarning
58           ├── DeprecationWarning
59           ├── EncodingWarning
60           ├── FutureWarning
61           ├── ImportWarning
62           ├── PendingDeprecationWarning
63           ├── ResourceWarning
64           ├── RuntimeWarning
65           ├── SyntaxWarning
66           ├── UnicodeWarning
67           └── UserWarning
68