blob: 623d73b41bd0eff6d0abc6c8da77ba33fa66b5f1 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _bltin-exceptions:
2
3Built-in Exceptions
4===================
5
6.. module:: exceptions
7 :synopsis: Standard exception classes.
8
9
10Exceptions should be class objects. The exceptions are defined in the module
11:mod:`exceptions`. This module never needs to be imported explicitly: the
12exceptions are provided in the built-in namespace as well as the
13:mod:`exceptions` module.
14
15.. index::
16 statement: try
17 statement: except
18
19For class exceptions, in a :keyword:`try` statement with an :keyword:`except`
20clause that mentions a particular class, that clause also handles any exception
21classes derived from that class (but not exception classes from which *it* is
22derived). Two exception classes that are not related via subclassing are never
23equivalent, even if they have the same name.
24
25.. index:: statement: raise
26
27The built-in exceptions listed below can be generated by the interpreter or
28built-in functions. Except where mentioned, they have an "associated value"
29indicating the detailed cause of the error. This may be a string or a tuple
30containing several items of information (e.g., an error code and a string
31explaining the code). The associated value is the second argument to the
32:keyword:`raise` statement. If the exception class is derived from the standard
33root class :exc:`BaseException`, the associated value is present as the
34exception instance's :attr:`args` attribute.
35
36User code can raise built-in exceptions. This can be used to test an exception
37handler or to report an error condition "just like" the situation in which the
38interpreter raises the same exception; but beware that there is nothing to
39prevent user code from raising an inappropriate error.
40
41The built-in exception classes can be sub-classed to define new exceptions;
42programmers are encouraged to at least derive new exceptions from the
43:exc:`Exception` class and not :exc:`BaseException`. More information on
44defining exceptions is available in the Python Tutorial under
45:ref:`tut-userexceptions`.
46
47The following exceptions are only used as base classes for other exceptions.
48
49
50.. exception:: BaseException
51
52 The base class for all built-in exceptions. It is not meant to be directly
53 inherited by user-defined classes (for that use :exc:`Exception`). If
54 :func:`str` or :func:`unicode` is called on an instance of this class, the
55 representation of the argument(s) to the instance are returned or the emptry
56 string when there were no arguments. All arguments are stored in :attr:`args`
57 as a tuple.
58
59 .. versionadded:: 2.5
60
61
62.. exception:: Exception
63
64 All built-in, non-system-exiting exceptions are derived from this class. All
65 user-defined exceptions should also be derived from this class.
66
67 .. versionchanged:: 2.5
68 Changed to inherit from :exc:`BaseException`.
69
70
71.. exception:: StandardError
72
73 The base class for all built-in exceptions except :exc:`StopIteration`,
74 :exc:`GeneratorExit`, :exc:`KeyboardInterrupt` and :exc:`SystemExit`.
75 :exc:`StandardError` itself is derived from :exc:`Exception`.
76
77
78.. exception:: ArithmeticError
79
80 The base class for those built-in exceptions that are raised for various
81 arithmetic errors: :exc:`OverflowError`, :exc:`ZeroDivisionError`,
82 :exc:`FloatingPointError`.
83
84
85.. exception:: LookupError
86
87 The base class for the exceptions that are raised when a key or index used on a
88 mapping or sequence is invalid: :exc:`IndexError`, :exc:`KeyError`. This can be
89 raised directly by :func:`sys.setdefaultencoding`.
90
91
92.. exception:: EnvironmentError
93
94 The base class for exceptions that can occur outside the Python system:
95 :exc:`IOError`, :exc:`OSError`. When exceptions of this type are created with a
96 2-tuple, the first item is available on the instance's :attr:`errno` attribute
97 (it is assumed to be an error number), and the second item is available on the
98 :attr:`strerror` attribute (it is usually the associated error message). The
99 tuple itself is also available on the :attr:`args` attribute.
100
101 .. versionadded:: 1.5.2
102
103 When an :exc:`EnvironmentError` exception is instantiated with a 3-tuple, the
104 first two items are available as above, while the third item is available on the
105 :attr:`filename` attribute. However, for backwards compatibility, the
106 :attr:`args` attribute contains only a 2-tuple of the first two constructor
107 arguments.
108
109 The :attr:`filename` attribute is ``None`` when this exception is created with
110 other than 3 arguments. The :attr:`errno` and :attr:`strerror` attributes are
111 also ``None`` when the instance was created with other than 2 or 3 arguments.
112 In this last case, :attr:`args` contains the verbatim constructor arguments as a
113 tuple.
114
115The following exceptions are the exceptions that are actually raised.
116
117
118.. exception:: AssertionError
119
120 .. index:: statement: assert
121
122 Raised when an :keyword:`assert` statement fails.
123
124
125.. exception:: AttributeError
126
127 Raised when an attribute reference or assignment fails. (When an object does
128 not support attribute references or attribute assignments at all,
129 :exc:`TypeError` is raised.)
130
131 .. % xref to attribute reference?
132
133
134.. exception:: EOFError
135
136 Raised when one of the built-in functions (:func:`input` or :func:`raw_input`)
137 hits an end-of-file condition (EOF) without reading any data. (N.B.: the
138 :meth:`read` and :meth:`readline` methods of file objects return an empty string
139 when they hit EOF.)
140
141 .. % XXXJH xrefs here
142 .. % XXXJH xrefs here
143
144
145.. exception:: FloatingPointError
146
147 Raised when a floating point operation fails. This exception is always defined,
148 but can only be raised when Python is configured with the
149 :option:`--with-fpectl` option, or the :const:`WANT_SIGFPE_HANDLER` symbol is
150 defined in the :file:`pyconfig.h` file.
151
152
153.. exception:: GeneratorExit
154
155 Raise when a generator's :meth:`close` method is called. It directly inherits
156 from :exc:`Exception` instead of :exc:`StandardError` since it is technically
157 not an error.
158
159 .. versionadded:: 2.5
160
161
162.. exception:: IOError
163
164 Raised when an I/O operation (such as a :keyword:`print` statement, the built-in
165 :func:`open` function or a method of a file object) fails for an I/O-related
166 reason, e.g., "file not found" or "disk full".
167
168 .. % XXXJH xrefs here
169
170 This class is derived from :exc:`EnvironmentError`. See the discussion above
171 for more information on exception instance attributes.
172
Gregory P. Smithe9fef692007-09-09 23:36:46 +0000173 .. versionchanged:: 2.6
174 Changed :exc:`socket.error` to use this as a base class.
175
Georg Brandl8ec7f652007-08-15 14:28:01 +0000176
177.. exception:: ImportError
178
179 Raised when an :keyword:`import` statement fails to find the module definition
180 or when a ``from ... import`` fails to find a name that is to be imported.
181
182 .. % XXXJH xref to import statement?
183
184
185.. exception:: IndexError
186
187 Raised when a sequence subscript is out of range. (Slice indices are silently
188 truncated to fall in the allowed range; if an index is not a plain integer,
189 :exc:`TypeError` is raised.)
190
191 .. % XXXJH xref to sequences
192
193
194.. exception:: KeyError
195
196 Raised when a mapping (dictionary) key is not found in the set of existing keys.
197
198 .. % XXXJH xref to mapping objects?
199
200
201.. exception:: KeyboardInterrupt
202
203 Raised when the user hits the interrupt key (normally :kbd:`Control-C` or
204 :kbd:`Delete`). During execution, a check for interrupts is made regularly.
205 Interrupts typed when a built-in function :func:`input` or :func:`raw_input` is
206 waiting for input also raise this exception. The exception inherits from
207 :exc:`BaseException` so as to not be accidentally caught by code that catches
208 :exc:`Exception` and thus prevent the interpreter from exiting.
209
210 .. % XXX(hylton) xrefs here
211
212 .. versionchanged:: 2.5
213 Changed to inherit from :exc:`BaseException`.
214
215
216.. exception:: MemoryError
217
218 Raised when an operation runs out of memory but the situation may still be
219 rescued (by deleting some objects). The associated value is a string indicating
220 what kind of (internal) operation ran out of memory. Note that because of the
221 underlying memory management architecture (C's :cfunc:`malloc` function), the
222 interpreter may not always be able to completely recover from this situation; it
223 nevertheless raises an exception so that a stack traceback can be printed, in
224 case a run-away program was the cause.
225
226
227.. exception:: NameError
228
229 Raised when a local or global name is not found. This applies only to
230 unqualified names. The associated value is an error message that includes the
231 name that could not be found.
232
233
234.. exception:: NotImplementedError
235
236 This exception is derived from :exc:`RuntimeError`. In user defined base
237 classes, abstract methods should raise this exception when they require derived
238 classes to override the method.
239
240 .. versionadded:: 1.5.2
241
242
243.. exception:: OSError
244
245 This class is derived from :exc:`EnvironmentError` and is used primarily as the
246 :mod:`os` module's ``os.error`` exception. See :exc:`EnvironmentError` above for
247 a description of the possible associated values.
248
249 .. % xref for os module
250
251 .. versionadded:: 1.5.2
252
253
254.. exception:: OverflowError
255
256 Raised when the result of an arithmetic operation is too large to be
257 represented. This cannot occur for long integers (which would rather raise
258 :exc:`MemoryError` than give up). Because of the lack of standardization of
259 floating point exception handling in C, most floating point operations also
260 aren't checked. For plain integers, all operations that can overflow are
261 checked except left shift, where typical applications prefer to drop bits than
262 raise an exception.
263
264 .. % XXXJH reference to long's and/or int's?
265
266
267.. exception:: ReferenceError
268
269 This exception is raised when a weak reference proxy, created by the
270 :func:`weakref.proxy` function, is used to access an attribute of the referent
271 after it has been garbage collected. For more information on weak references,
272 see the :mod:`weakref` module.
273
274 .. versionadded:: 2.2
275 Previously known as the :exc:`weakref.ReferenceError` exception.
276
277
278.. exception:: RuntimeError
279
280 Raised when an error is detected that doesn't fall in any of the other
281 categories. The associated value is a string indicating what precisely went
282 wrong. (This exception is mostly a relic from a previous version of the
283 interpreter; it is not used very much any more.)
284
285
286.. exception:: StopIteration
287
288 Raised by an iterator's :meth:`next` method to signal that there are no further
289 values. This is derived from :exc:`Exception` rather than :exc:`StandardError`,
290 since this is not considered an error in its normal application.
291
292 .. versionadded:: 2.2
293
294
295.. exception:: SyntaxError
296
297 Raised when the parser encounters a syntax error. This may occur in an
298 :keyword:`import` statement, in an :keyword:`exec` statement, in a call to the
299 built-in function :func:`eval` or :func:`input`, or when reading the initial
300 script or standard input (also interactively).
301
302 .. % XXXJH xref to these functions?
303
304 Instances of this class have attributes :attr:`filename`, :attr:`lineno`,
305 :attr:`offset` and :attr:`text` for easier access to the details. :func:`str`
306 of the exception instance returns only the message.
307
308
309.. exception:: SystemError
310
311 Raised when the interpreter finds an internal error, but the situation does not
312 look so serious to cause it to abandon all hope. The associated value is a
313 string indicating what went wrong (in low-level terms).
314
315 You should report this to the author or maintainer of your Python interpreter.
316 Be sure to report the version of the Python interpreter (``sys.version``; it is
317 also printed at the start of an interactive Python session), the exact error
318 message (the exception's associated value) and if possible the source of the
319 program that triggered the error.
320
321
322.. exception:: SystemExit
323
324 This exception is raised by the :func:`sys.exit` function. When it is not
325 handled, the Python interpreter exits; no stack traceback is printed. If the
326 associated value is a plain integer, it specifies the system exit status (passed
327 to C's :cfunc:`exit` function); if it is ``None``, the exit status is zero; if
328 it has another type (such as a string), the object's value is printed and the
329 exit status is one.
330
331 .. % XXX(hylton) xref to module sys?
332
333 Instances have an attribute :attr:`code` which is set to the proposed exit
334 status or error message (defaulting to ``None``). Also, this exception derives
335 directly from :exc:`BaseException` and not :exc:`StandardError`, since it is not
336 technically an error.
337
338 A call to :func:`sys.exit` is translated into an exception so that clean-up
339 handlers (:keyword:`finally` clauses of :keyword:`try` statements) can be
340 executed, and so that a debugger can execute a script without running the risk
341 of losing control. The :func:`os._exit` function can be used if it is
342 absolutely positively necessary to exit immediately (for example, in the child
343 process after a call to :func:`fork`).
344
345 The exception inherits from :exc:`BaseException` instead of :exc:`StandardError`
346 or :exc:`Exception` so that it is not accidentally caught by code that catches
347 :exc:`Exception`. This allows the exception to properly propagate up and cause
348 the interpreter to exit.
349
350 .. versionchanged:: 2.5
351 Changed to inherit from :exc:`BaseException`.
352
353
354.. exception:: TypeError
355
356 Raised when an operation or function is applied to an object of inappropriate
357 type. The associated value is a string giving details about the type mismatch.
358
359
360.. exception:: UnboundLocalError
361
362 Raised when a reference is made to a local variable in a function or method, but
363 no value has been bound to that variable. This is a subclass of
364 :exc:`NameError`.
365
366 .. versionadded:: 2.0
367
368
369.. exception:: UnicodeError
370
371 Raised when a Unicode-related encoding or decoding error occurs. It is a
372 subclass of :exc:`ValueError`.
373
374 .. versionadded:: 2.0
375
376
377.. exception:: UnicodeEncodeError
378
379 Raised when a Unicode-related error occurs during encoding. It is a subclass of
380 :exc:`UnicodeError`.
381
382 .. versionadded:: 2.3
383
384
385.. exception:: UnicodeDecodeError
386
387 Raised when a Unicode-related error occurs during decoding. It is a subclass of
388 :exc:`UnicodeError`.
389
390 .. versionadded:: 2.3
391
392
393.. exception:: UnicodeTranslateError
394
395 Raised when a Unicode-related error occurs during translating. It is a subclass
396 of :exc:`UnicodeError`.
397
398 .. versionadded:: 2.3
399
400
401.. exception:: ValueError
402
403 Raised when a built-in operation or function receives an argument that has the
404 right type but an inappropriate value, and the situation is not described by a
405 more precise exception such as :exc:`IndexError`.
406
407
408.. exception:: WindowsError
409
410 Raised when a Windows-specific error occurs or when the error number does not
411 correspond to an :cdata:`errno` value. The :attr:`winerror` and
412 :attr:`strerror` values are created from the return values of the
413 :cfunc:`GetLastError` and :cfunc:`FormatMessage` functions from the Windows
414 Platform API. The :attr:`errno` value maps the :attr:`winerror` value to
415 corresponding ``errno.h`` values. This is a subclass of :exc:`OSError`.
416
417 .. versionadded:: 2.0
418
419 .. versionchanged:: 2.5
420 Previous versions put the :cfunc:`GetLastError` codes into :attr:`errno`.
421
422
423.. exception:: ZeroDivisionError
424
425 Raised when the second argument of a division or modulo operation is zero. The
426 associated value is a string indicating the type of the operands and the
427 operation.
428
429The following exceptions are used as warning categories; see the :mod:`warnings`
430module for more information.
431
432
433.. exception:: Warning
434
435 Base class for warning categories.
436
437
438.. exception:: UserWarning
439
440 Base class for warnings generated by user code.
441
442
443.. exception:: DeprecationWarning
444
445 Base class for warnings about deprecated features.
446
447
448.. exception:: PendingDeprecationWarning
449
450 Base class for warnings about features which will be deprecated in the future.
451
452
453.. exception:: SyntaxWarning
454
455 Base class for warnings about dubious syntax
456
457
458.. exception:: RuntimeWarning
459
460 Base class for warnings about dubious runtime behavior.
461
462
463.. exception:: FutureWarning
464
465 Base class for warnings about constructs that will change semantically in the
466 future.
467
468
469.. exception:: ImportWarning
470
471 Base class for warnings about probable mistakes in module imports.
472
473 .. versionadded:: 2.5
474
475
476.. exception:: UnicodeWarning
477
478 Base class for warnings related to Unicode.
479
480 .. versionadded:: 2.5
481
482The class hierarchy for built-in exceptions is:
483
484
485.. literalinclude:: ../../Lib/test/exception_hierarchy.txt