blob: 079ce2963c308d0ceb127e6fbe1f58ab32125708 [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
13 +-- EnvironmentError
14 | +-- IOError
15 | +-- OSError
16 | +-- WindowsError (Windows)
17 | +-- VMSError (VMS)
18 +-- EOFError
19 +-- ImportError
20 +-- LookupError
21 | +-- IndexError
22 | +-- KeyError
23 +-- MemoryError
24 +-- NameError
25 | +-- UnboundLocalError
26 +-- ReferenceError
27 +-- RuntimeError
28 | +-- NotImplementedError
29 +-- SyntaxError
30 | +-- IndentationError
31 | +-- TabError
32 +-- SystemError
33 +-- TypeError
34 +-- ValueError
35 | +-- UnicodeError
36 | +-- UnicodeDecodeError
37 | +-- UnicodeEncodeError
38 | +-- UnicodeTranslateError
Brett Cannonbf364092006-03-01 04:25:17 +000039 +-- Warning
40 +-- DeprecationWarning
41 +-- PendingDeprecationWarning
42 +-- RuntimeWarning
43 +-- SyntaxWarning
44 +-- UserWarning
45 +-- FutureWarning
Thomas Wouters477c8d52006-05-27 19:21:47 +000046 +-- ImportWarning
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000047 +-- UnicodeWarning