Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 1 | BaseException |
| 2 | +-- SystemExit |
| 3 | +-- KeyboardInterrupt |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 4 | +-- GeneratorExit |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 5 | +-- Exception |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 6 | +-- StopIteration |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 7 | +-- StopAsyncIteration |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 8 | +-- ArithmeticError |
| 9 | | +-- FloatingPointError |
| 10 | | +-- OverflowError |
| 11 | | +-- ZeroDivisionError |
| 12 | +-- AssertionError |
| 13 | +-- AttributeError |
Neal Norwitz | faa54a3 | 2007-08-19 04:23:20 +0000 | [diff] [blame] | 14 | +-- BufferError |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 15 | +-- EOFError |
| 16 | +-- ImportError |
cocoatomo | 992ae64 | 2017-04-19 09:38:26 +0900 | [diff] [blame] | 17 | | +-- ModuleNotFoundError |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 18 | +-- LookupError |
| 19 | | +-- IndexError |
| 20 | | +-- KeyError |
| 21 | +-- MemoryError |
| 22 | +-- NameError |
| 23 | | +-- UnboundLocalError |
Antoine Pitrou | 6b4883d | 2011-10-12 02:54:14 +0200 | [diff] [blame] | 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 |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 40 | +-- ReferenceError |
| 41 | +-- RuntimeError |
| 42 | | +-- NotImplementedError |
Yury Selivanov | f488fb4 | 2015-07-03 01:04:23 -0400 | [diff] [blame] | 43 | | +-- RecursionError |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 44 | +-- SyntaxError |
| 45 | | +-- IndentationError |
| 46 | | +-- TabError |
| 47 | +-- SystemError |
| 48 | +-- TypeError |
| 49 | +-- ValueError |
| 50 | | +-- UnicodeError |
| 51 | | +-- UnicodeDecodeError |
| 52 | | +-- UnicodeEncodeError |
| 53 | | +-- UnicodeTranslateError |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 54 | +-- Warning |
| 55 | +-- DeprecationWarning |
| 56 | +-- PendingDeprecationWarning |
| 57 | +-- RuntimeWarning |
| 58 | +-- SyntaxWarning |
| 59 | +-- UserWarning |
| 60 | +-- FutureWarning |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 61 | +-- ImportWarning |
| 62 | +-- UnicodeWarning |
| 63 | +-- BytesWarning |
Georg Brandl | 08be72d | 2010-10-24 15:11:22 +0000 | [diff] [blame] | 64 | +-- ResourceWarning |