blob: 3714a4115aa1c39f04f791cd23a05c5a0b98edd8 [file] [log] [blame]
Brett Cannonbf364092006-03-01 04:25:17 +00001BaseException
2 +-- SystemExit
3 +-- KeyboardInterrupt
4 +-- Exception
5 +-- GeneratorExit
6 +-- 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
Thomas Wouters477c8d52006-05-27 19:21:47 +000047 +-- ImportWarning
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000048 +-- UnicodeWarning