paul@6 | 1 | #!/usr/bin/env python |
paul@6 | 2 | |
paul@6 | 3 | """ |
paul@6 | 4 | Exception objects. |
paul@6 | 5 | |
paul@868 | 6 | Copyright (C) 2015, 2016, 2017, 2019 Paul Boddie <paul@boddie.org.uk> |
paul@6 | 7 | |
paul@6 | 8 | This program is free software; you can redistribute it and/or modify it under |
paul@6 | 9 | the terms of the GNU General Public License as published by the Free Software |
paul@6 | 10 | Foundation; either version 3 of the License, or (at your option) any later |
paul@6 | 11 | version. |
paul@6 | 12 | |
paul@6 | 13 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@6 | 14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@6 | 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@6 | 16 | details. |
paul@6 | 17 | |
paul@6 | 18 | You should have received a copy of the GNU General Public License along with |
paul@6 | 19 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@6 | 20 | """ |
paul@6 | 21 | |
paul@6 | 22 | from __builtins__.exception.assertion import ( |
paul@6 | 23 | AssertionError |
paul@6 | 24 | ) |
paul@6 | 25 | |
paul@6 | 26 | from __builtins__.exception.base import ( |
paul@6 | 27 | IndexError, |
paul@868 | 28 | LoopExit, |
paul@6 | 29 | KeyError, |
paul@6 | 30 | NotImplementedError, |
paul@470 | 31 | RuntimeError, |
paul@6 | 32 | StopIteration, |
paul@6 | 33 | ValueError |
paul@6 | 34 | ) |
paul@6 | 35 | |
paul@6 | 36 | from __builtins__.exception.io import ( |
paul@6 | 37 | EOFError, |
paul@6 | 38 | IOError, |
paul@6 | 39 | KeyboardInterrupt |
paul@6 | 40 | ) |
paul@6 | 41 | |
paul@6 | 42 | from __builtins__.exception.naming import ( |
paul@365 | 43 | AttributeError |
paul@6 | 44 | ) |
paul@6 | 45 | |
paul@6 | 46 | from __builtins__.exception.program import ( |
paul@6 | 47 | IndentationError, |
paul@6 | 48 | SyntaxError, |
paul@470 | 49 | TabError |
paul@6 | 50 | ) |
paul@6 | 51 | |
paul@6 | 52 | from __builtins__.exception.system import ( |
paul@6 | 53 | EnvironmentError, |
paul@6 | 54 | OSError, |
paul@6 | 55 | SystemError, |
paul@6 | 56 | SystemExit |
paul@6 | 57 | ) |
paul@6 | 58 | |
paul@6 | 59 | from __builtins__.exception.unicode import ( |
paul@6 | 60 | UnicodeDecodeError, |
paul@6 | 61 | UnicodeEncodeError, |
paul@6 | 62 | UnicodeError, |
paul@470 | 63 | UnicodeTranslateError |
paul@6 | 64 | ) |
paul@6 | 65 | |
paul@6 | 66 | # vim: tabstop=4 expandtab shiftwidth=4 |