• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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      │    ├── PythonFinalizationError
44      │    └── RecursionError
45      ├── StopAsyncIteration
46      ├── StopIteration
47      ├── SyntaxError
48      │    └── IndentationError
49      │         └── TabError
50      ├── SystemError
51      ├── TypeError
52      ├── ValueError
53      │    └── UnicodeError
54      │         ├── UnicodeDecodeError
55      │         ├── UnicodeEncodeError
56      │         └── UnicodeTranslateError
57      └── Warning
58           ├── BytesWarning
59           ├── DeprecationWarning
60           ├── EncodingWarning
61           ├── FutureWarning
62           ├── ImportWarning
63           ├── PendingDeprecationWarning
64           ├── ResourceWarning
65           ├── RuntimeWarning
66           ├── SyntaxWarning
67           ├── UnicodeWarning
68           └── UserWarning
69