blob: 5037b335d978d8ebe87c2219378ac11412fe85c9 [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
Guido van Rossumcd16bf62007-06-13 18:07:49 +00007 +-- ArithmeticError
8 | +-- FloatingPointError
9 | +-- OverflowError
10 | +-- ZeroDivisionError
11 +-- AssertionError
12 +-- AttributeError
Neal Norwitzfaa54a32007-08-19 04:23:20 +000013 +-- BufferError
Guido van Rossumcd16bf62007-06-13 18:07:49 +000014 +-- EnvironmentError
15 | +-- IOError
16 | +-- OSError
17 | +-- WindowsError (Windows)
18 | +-- VMSError (VMS)
19 +-- EOFError
20 +-- ImportError
21 +-- LookupError
22 | +-- IndexError
23 | +-- KeyError
24 +-- MemoryError
25 +-- NameError
26 | +-- UnboundLocalError
27 +-- ReferenceError
28 +-- RuntimeError
29 | +-- NotImplementedError
30 +-- SyntaxError
31 | +-- IndentationError
32 | +-- TabError
33 +-- SystemError
34 +-- TypeError
35 +-- ValueError
36 | +-- UnicodeError
37 | +-- UnicodeDecodeError
38 | +-- UnicodeEncodeError
39 | +-- UnicodeTranslateError
Brett Cannonbf364092006-03-01 04:25:17 +000040 +-- Warning
41 +-- DeprecationWarning
42 +-- PendingDeprecationWarning
43 +-- RuntimeWarning
44 +-- SyntaxWarning
45 +-- UserWarning
46 +-- FutureWarning
Guido van Rossum98297ee2007-11-06 21:34:58 +000047 +-- ImportWarning
48 +-- UnicodeWarning
49 +-- BytesWarning
Georg Brandl08be72d2010-10-24 15:11:22 +000050 +-- ResourceWarning