1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
##############################################################################
#
# Copyright (c) 2003 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Interfaces for standard python exceptions
"""
from zope.interface import Interface
from zope.interface import classImplements
class IException(Interface):
"Interface for `Exception`"
classImplements(Exception, IException) # noqa E305
class IStandardError(IException):
"Interface for `StandardError` (no longer existing.)"
class IWarning(IException):
"Interface for `Warning`"
classImplements(Warning, IWarning) # noqa E305
class ISyntaxError(IStandardError):
"Interface for `SyntaxError`"
classImplements(SyntaxError, ISyntaxError) # noqa E305
class ILookupError(IStandardError):
"Interface for `LookupError`"
classImplements(LookupError, ILookupError) # noqa E305
class IValueError(IStandardError):
"Interface for `ValueError`"
classImplements(ValueError, IValueError) # noqa E305
class IRuntimeError(IStandardError):
"Interface for `RuntimeError`"
classImplements(RuntimeError, IRuntimeError) # noqa E305
class IArithmeticError(IStandardError):
"Interface for `ArithmeticError`"
classImplements(ArithmeticError, IArithmeticError) # noqa E305
class IAssertionError(IStandardError):
"Interface for `AssertionError`"
classImplements(AssertionError, IAssertionError) # noqa E305
class IAttributeError(IStandardError):
"Interface for `AttributeError`"
classImplements(AttributeError, IAttributeError) # noqa E305
class IDeprecationWarning(IWarning):
"Interface for `DeprecationWarning`"
classImplements(DeprecationWarning, IDeprecationWarning) # noqa E305
class IEOFError(IStandardError):
"Interface for `EOFError`"
classImplements(EOFError, IEOFError) # noqa E305
class IEnvironmentError(IStandardError):
"Interface for `EnvironmentError`"
classImplements(EnvironmentError, IEnvironmentError) # noqa E305
class IFloatingPointError(IArithmeticError):
"Interface for `FloatingPointError`"
classImplements(FloatingPointError, IFloatingPointError) # noqa E305
class IIOError(IEnvironmentError):
"Interface for `IOError`"
classImplements(IOError, IIOError) # noqa E305
class IImportError(IStandardError):
"Interface for `ImportError`"
classImplements(ImportError, IImportError) # noqa E305
class IIndentationError(ISyntaxError):
"Interface for `IndentationError`"
classImplements(IndentationError, IIndentationError) # noqa E305
class IIndexError(ILookupError):
"Interface for `IndexError`"
classImplements(IndexError, IIndexError) # noqa E305
class IKeyError(ILookupError):
"Interface for `KeyError`"
classImplements(KeyError, IKeyError) # noqa E305
class IKeyboardInterrupt(IStandardError):
"Interface for `KeyboardInterrupt`"
classImplements(KeyboardInterrupt, IKeyboardInterrupt) # noqa E305
class IMemoryError(IStandardError):
"Interface for `MemoryError`"
classImplements(MemoryError, IMemoryError) # noqa E305
class INameError(IStandardError):
"Interface for `NameError`"
classImplements(NameError, INameError) # noqa E305
class INotImplementedError(IRuntimeError):
"Interface for `NotImplementedError`"
classImplements(NotImplementedError, INotImplementedError) # noqa E305
class IOSError(IEnvironmentError):
"Interface for `OSError`"
classImplements(OSError, IOSError) # noqa E305
class IOverflowError(IArithmeticError):
"Interface for `ArithmeticError`"
classImplements(OverflowError, IOverflowError) # noqa E305
class IOverflowWarning(IWarning):
"""Deprecated, no standard class implements this.
This was the interface for ``OverflowWarning`` prior to Python 2.5,
but that class was removed for all versions after that.
"""
class IReferenceError(IStandardError):
"Interface for `ReferenceError`"
classImplements(ReferenceError, IReferenceError) # noqa E305
class IRuntimeWarning(IWarning):
"Interface for `RuntimeWarning`"
classImplements(RuntimeWarning, IRuntimeWarning) # noqa E305
class IStopIteration(IException):
"Interface for `StopIteration`"
classImplements(StopIteration, IStopIteration) # noqa E305
class ISyntaxWarning(IWarning):
"Interface for `SyntaxWarning`"
classImplements(SyntaxWarning, ISyntaxWarning) # noqa E305
class ISystemError(IStandardError):
"Interface for `SystemError`"
classImplements(SystemError, ISystemError) # noqa E305
class ISystemExit(IException):
"Interface for `SystemExit`"
classImplements(SystemExit, ISystemExit) # noqa E305
class ITabError(IIndentationError):
"Interface for `TabError`"
classImplements(TabError, ITabError) # noqa E305
class ITypeError(IStandardError):
"Interface for `TypeError`"
classImplements(TypeError, ITypeError) # noqa E305
class IUnboundLocalError(INameError):
"Interface for `UnboundLocalError`"
classImplements(UnboundLocalError, IUnboundLocalError) # noqa E305
class IUnicodeError(IValueError):
"Interface for `UnicodeError`"
classImplements(UnicodeError, IUnicodeError) # noqa E305
class IUserWarning(IWarning):
"Interface for `UserWarning`"
classImplements(UserWarning, IUserWarning) # noqa E305
class IZeroDivisionError(IArithmeticError):
"Interface for `ZeroDivisionError`"
classImplements(ZeroDivisionError, IZeroDivisionError) # noqa E305
|