blob: 05137654de62610b67ceed1bbbb88a1f7a5474d8 [file] [log] [blame]
Brett Cannonbf364092006-03-01 04:25:17 +00001BaseException
2 +-- SystemExit
3 +-- KeyboardInterrupt
Christian Heimescbf3b5c2007-12-03 21:02:03 +00004 +-- GeneratorExit
Brett Cannonbf364092006-03-01 04:25:17 +00005 +-- Exception
Brett Cannonbf364092006-03-01 04:25:17 +00006 +-- StopIteration
Yury Selivanov75445082015-05-11 22:57:16 -04007 +-- StopAsyncIteration
Guido van Rossumcd16bf62007-06-13 18:07:49 +00008 +-- ArithmeticError
9 | +-- FloatingPointError
10 | +-- OverflowError
11 | +-- ZeroDivisionError
12 +-- AssertionError
13 +-- AttributeError
Neal Norwitzfaa54a32007-08-19 04:23:20 +000014 +-- BufferError
Guido van Rossumcd16bf62007-06-13 18:07:49 +000015 +-- EOFError
16 +-- ImportError
17 +-- LookupError
18 | +-- IndexError
19 | +-- KeyError
20 +-- MemoryError
21 +-- NameError
22 | +-- UnboundLocalError
Antoine Pitrou6b4883d2011-10-12 02:54:14 +020023 +-- OSError
24 | +-- BlockingIOError
25 | +-- ChildProcessError
26 | +-- ConnectionError
27 | | +-- BrokenPipeError
28 | | +-- ConnectionAbortedError
29 | | +-- ConnectionRefusedError
30 | | +-- ConnectionResetError
31 | +-- FileExistsError
32 | +-- FileNotFoundError
33 | +-- InterruptedError
34 | +-- IsADirectoryError
35 | +-- NotADirectoryError
36 | +-- PermissionError
37 | +-- ProcessLookupError
38 | +-- TimeoutError
Guido van Rossumcd16bf62007-06-13 18:07:49 +000039 +-- ReferenceError
40 +-- RuntimeError
41 | +-- NotImplementedError
Yury Selivanovf488fb42015-07-03 01:04:23 -040042 | +-- RecursionError
Guido van Rossumcd16bf62007-06-13 18:07:49 +000043 +-- SyntaxError
44 | +-- IndentationError
45 | +-- TabError
46 +-- SystemError
47 +-- TypeError
48 +-- ValueError
49 | +-- UnicodeError
50 | +-- UnicodeDecodeError
51 | +-- UnicodeEncodeError
52 | +-- UnicodeTranslateError
Brett Cannonbf364092006-03-01 04:25:17 +000053 +-- Warning
54 +-- DeprecationWarning
55 +-- PendingDeprecationWarning
56 +-- RuntimeWarning
57 +-- SyntaxWarning
58 +-- UserWarning
59 +-- FutureWarning
Guido van Rossum98297ee2007-11-06 21:34:58 +000060 +-- ImportWarning
61 +-- UnicodeWarning
62 +-- BytesWarning
Georg Brandl08be72d2010-10-24 15:11:22 +000063 +-- ResourceWarning