blob: e3e6536e901054938c01823893e96307a85ba200 [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"
Georg Brandl335d4f52011-01-09 07:58:45 +000029indicating the detailed cause of the error. This may be a string or a tuple
Georg Brandl8ec7f652007-08-15 14:28:01 +000030containing 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
Georg Brandl8ec7f652007-08-15 14:28:01 +000049.. exception:: BaseException
50
51 The base class for all built-in exceptions. It is not meant to be directly
Georg Brandl335d4f52011-01-09 07:58:45 +000052 inherited by user-defined classes (for that, use :exc:`Exception`). If
Georg Brandl8ec7f652007-08-15 14:28:01 +000053 :func:`str` or :func:`unicode` is called on an instance of this class, the
Georg Brandl335d4f52011-01-09 07:58:45 +000054 representation of the argument(s) to the instance are returned, or the empty
55 string when there were no arguments.
Georg Brandl8ec7f652007-08-15 14:28:01 +000056
57 .. versionadded:: 2.5
58
Georg Brandl335d4f52011-01-09 07:58:45 +000059 .. attribute:: args
60
61 The tuple of arguments given to the exception constructor. Some built-in
62 exceptions (like :exc:`IOError`) expect a certain number of arguments and
63 assign a special meaning to the elements of this tuple, while others are
64 usually called only with a single string giving an error message.
65
Georg Brandl8ec7f652007-08-15 14:28:01 +000066
67.. exception:: Exception
68
69 All built-in, non-system-exiting exceptions are derived from this class. All
70 user-defined exceptions should also be derived from this class.
71
72 .. versionchanged:: 2.5
73 Changed to inherit from :exc:`BaseException`.
74
75
76.. exception:: StandardError
77
78 The base class for all built-in exceptions except :exc:`StopIteration`,
79 :exc:`GeneratorExit`, :exc:`KeyboardInterrupt` and :exc:`SystemExit`.
80 :exc:`StandardError` itself is derived from :exc:`Exception`.
81
82
83.. exception:: ArithmeticError
84
85 The base class for those built-in exceptions that are raised for various
86 arithmetic errors: :exc:`OverflowError`, :exc:`ZeroDivisionError`,
87 :exc:`FloatingPointError`.
88
89
Georg Brandl28dadd92011-02-25 10:50:32 +000090.. exception:: BufferError
91
92 Raised when a :ref:`buffer <bufferobjects>` related operation cannot be
93 performed.
94
95
Georg Brandl8ec7f652007-08-15 14:28:01 +000096.. exception:: LookupError
97
Benjamin Peterson3dabc102009-05-10 23:52:09 +000098 The base class for the exceptions that are raised when a key or index used on
99 a mapping or sequence is invalid: :exc:`IndexError`, :exc:`KeyError`. This
100 can be raised directly by :func:`codecs.lookup`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000101
102
103.. exception:: EnvironmentError
104
105 The base class for exceptions that can occur outside the Python system:
106 :exc:`IOError`, :exc:`OSError`. When exceptions of this type are created with a
107 2-tuple, the first item is available on the instance's :attr:`errno` attribute
108 (it is assumed to be an error number), and the second item is available on the
109 :attr:`strerror` attribute (it is usually the associated error message). The
110 tuple itself is also available on the :attr:`args` attribute.
111
112 .. versionadded:: 1.5.2
113
114 When an :exc:`EnvironmentError` exception is instantiated with a 3-tuple, the
115 first two items are available as above, while the third item is available on the
116 :attr:`filename` attribute. However, for backwards compatibility, the
117 :attr:`args` attribute contains only a 2-tuple of the first two constructor
118 arguments.
119
120 The :attr:`filename` attribute is ``None`` when this exception is created with
121 other than 3 arguments. The :attr:`errno` and :attr:`strerror` attributes are
122 also ``None`` when the instance was created with other than 2 or 3 arguments.
123 In this last case, :attr:`args` contains the verbatim constructor arguments as a
124 tuple.
125
126The following exceptions are the exceptions that are actually raised.
127
128
129.. exception:: AssertionError
130
131 .. index:: statement: assert
132
133 Raised when an :keyword:`assert` statement fails.
134
135
136.. exception:: AttributeError
137
Georg Brandlb19be572007-12-29 10:57:00 +0000138 Raised when an attribute reference (see :ref:`attribute-references`) or
139 assignment fails. (When an object does not support attribute references or
140 attribute assignments at all, :exc:`TypeError` is raised.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000141
142
143.. exception:: EOFError
144
145 Raised when one of the built-in functions (:func:`input` or :func:`raw_input`)
146 hits an end-of-file condition (EOF) without reading any data. (N.B.: the
Georg Brandlb19be572007-12-29 10:57:00 +0000147 :meth:`file.read` and :meth:`file.readline` methods return an empty string
Georg Brandl8ec7f652007-08-15 14:28:01 +0000148 when they hit EOF.)
149
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150
151.. exception:: FloatingPointError
152
153 Raised when a floating point operation fails. This exception is always defined,
154 but can only be raised when Python is configured with the
Éric Araujoa8132ec2010-12-16 03:53:53 +0000155 ``--with-fpectl`` option, or the :const:`WANT_SIGFPE_HANDLER` symbol is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000156 defined in the :file:`pyconfig.h` file.
157
158
159.. exception:: GeneratorExit
160
Georg Brandlcf3fb252007-10-21 10:52:38 +0000161 Raise when a :term:`generator`\'s :meth:`close` method is called. It
Christian Heimes44eeaec2007-12-03 20:01:02 +0000162 directly inherits from :exc:`BaseException` instead of :exc:`StandardError` since
Georg Brandlcf3fb252007-10-21 10:52:38 +0000163 it is technically not an error.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000164
165 .. versionadded:: 2.5
166
Christian Heimes44eeaec2007-12-03 20:01:02 +0000167 .. versionchanged:: 2.6
168 Changed to inherit from :exc:`BaseException`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000169
170.. exception:: IOError
171
172 Raised when an I/O operation (such as a :keyword:`print` statement, the built-in
173 :func:`open` function or a method of a file object) fails for an I/O-related
174 reason, e.g., "file not found" or "disk full".
175
Georg Brandl8ec7f652007-08-15 14:28:01 +0000176 This class is derived from :exc:`EnvironmentError`. See the discussion above
177 for more information on exception instance attributes.
178
Gregory P. Smithe9fef692007-09-09 23:36:46 +0000179 .. versionchanged:: 2.6
180 Changed :exc:`socket.error` to use this as a base class.
181
Georg Brandl8ec7f652007-08-15 14:28:01 +0000182
183.. exception:: ImportError
184
185 Raised when an :keyword:`import` statement fails to find the module definition
186 or when a ``from ... import`` fails to find a name that is to be imported.
187
Georg Brandl8ec7f652007-08-15 14:28:01 +0000188
189.. exception:: IndexError
190
191 Raised when a sequence subscript is out of range. (Slice indices are silently
192 truncated to fall in the allowed range; if an index is not a plain integer,
193 :exc:`TypeError` is raised.)
194
Georg Brandlb19be572007-12-29 10:57:00 +0000195 .. XXX xref to sequences
Georg Brandl8ec7f652007-08-15 14:28:01 +0000196
197
198.. exception:: KeyError
199
200 Raised when a mapping (dictionary) key is not found in the set of existing keys.
201
Georg Brandlb19be572007-12-29 10:57:00 +0000202 .. XXX xref to mapping objects?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000203
204
205.. exception:: KeyboardInterrupt
206
207 Raised when the user hits the interrupt key (normally :kbd:`Control-C` or
208 :kbd:`Delete`). During execution, a check for interrupts is made regularly.
209 Interrupts typed when a built-in function :func:`input` or :func:`raw_input` is
210 waiting for input also raise this exception. The exception inherits from
211 :exc:`BaseException` so as to not be accidentally caught by code that catches
212 :exc:`Exception` and thus prevent the interpreter from exiting.
213
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214 .. versionchanged:: 2.5
215 Changed to inherit from :exc:`BaseException`.
216
217
218.. exception:: MemoryError
219
220 Raised when an operation runs out of memory but the situation may still be
221 rescued (by deleting some objects). The associated value is a string indicating
222 what kind of (internal) operation ran out of memory. Note that because of the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100223 underlying memory management architecture (C's :c:func:`malloc` function), the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000224 interpreter may not always be able to completely recover from this situation; it
225 nevertheless raises an exception so that a stack traceback can be printed, in
226 case a run-away program was the cause.
227
228
229.. exception:: NameError
230
231 Raised when a local or global name is not found. This applies only to
232 unqualified names. The associated value is an error message that includes the
233 name that could not be found.
234
235
236.. exception:: NotImplementedError
237
238 This exception is derived from :exc:`RuntimeError`. In user defined base
239 classes, abstract methods should raise this exception when they require derived
240 classes to override the method.
241
242 .. versionadded:: 1.5.2
243
244
245.. exception:: OSError
246
Georg Brandl57fe0f22008-01-12 10:53:29 +0000247 .. index:: module: errno
248
249 This exception is derived from :exc:`EnvironmentError`. It is raised when a
250 function returns a system-related error (not for illegal argument types or
251 other incidental errors). The :attr:`errno` attribute is a numeric error
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100252 code from :c:data:`errno`, and the :attr:`strerror` attribute is the
253 corresponding string, as would be printed by the C function :c:func:`perror`.
Georg Brandl57fe0f22008-01-12 10:53:29 +0000254 See the module :mod:`errno`, which contains names for the error codes defined
255 by the underlying operating system.
256
257 For exceptions that involve a file system path (such as :func:`chdir` or
258 :func:`unlink`), the exception instance will contain a third attribute,
259 :attr:`filename`, which is the file name passed to the function.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000260
Georg Brandlfca4e1f2008-01-12 16:11:09 +0000261 .. versionadded:: 1.5.2
262
Georg Brandl8ec7f652007-08-15 14:28:01 +0000263
264.. exception:: OverflowError
265
266 Raised when the result of an arithmetic operation is too large to be
267 represented. This cannot occur for long integers (which would rather raise
Georg Brandle9135ba2008-05-11 10:55:59 +0000268 :exc:`MemoryError` than give up) and for most operations with plain integers,
269 which return a long integer instead. Because of the lack of standardization
270 of floating point exception handling in C, most floating point operations
271 also aren't checked.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000272
Georg Brandl8ec7f652007-08-15 14:28:01 +0000273
274.. exception:: ReferenceError
275
276 This exception is raised when a weak reference proxy, created by the
277 :func:`weakref.proxy` function, is used to access an attribute of the referent
278 after it has been garbage collected. For more information on weak references,
279 see the :mod:`weakref` module.
280
281 .. versionadded:: 2.2
282 Previously known as the :exc:`weakref.ReferenceError` exception.
283
284
285.. exception:: RuntimeError
286
287 Raised when an error is detected that doesn't fall in any of the other
288 categories. The associated value is a string indicating what precisely went
Antoine Pitrou13133682013-11-25 19:08:32 +0100289 wrong.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000290
291
292.. exception:: StopIteration
293
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000294 Raised by an :term:`iterator`\'s :meth:`~iterator.next` method to signal that
295 there are no further values. This is derived from :exc:`Exception` rather
296 than :exc:`StandardError`, since this is not considered an error in its
297 normal application.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000298
299 .. versionadded:: 2.2
300
301
302.. exception:: SyntaxError
303
304 Raised when the parser encounters a syntax error. This may occur in an
305 :keyword:`import` statement, in an :keyword:`exec` statement, in a call to the
306 built-in function :func:`eval` or :func:`input`, or when reading the initial
307 script or standard input (also interactively).
308
Georg Brandl8ec7f652007-08-15 14:28:01 +0000309 Instances of this class have attributes :attr:`filename`, :attr:`lineno`,
310 :attr:`offset` and :attr:`text` for easier access to the details. :func:`str`
311 of the exception instance returns only the message.
312
313
Georg Brandl28dadd92011-02-25 10:50:32 +0000314.. exception:: IndentationError
315
316 Base class for syntax errors related to incorrect indentation. This is a
317 subclass of :exc:`SyntaxError`.
318
319
320.. exception:: TabError
321
322 Raised when indentation contains an inconsistent use of tabs and spaces.
323 This is a subclass of :exc:`IndentationError`.
324
325
Georg Brandl8ec7f652007-08-15 14:28:01 +0000326.. exception:: SystemError
327
328 Raised when the interpreter finds an internal error, but the situation does not
329 look so serious to cause it to abandon all hope. The associated value is a
330 string indicating what went wrong (in low-level terms).
331
332 You should report this to the author or maintainer of your Python interpreter.
333 Be sure to report the version of the Python interpreter (``sys.version``; it is
334 also printed at the start of an interactive Python session), the exact error
335 message (the exception's associated value) and if possible the source of the
336 program that triggered the error.
337
338
339.. exception:: SystemExit
340
341 This exception is raised by the :func:`sys.exit` function. When it is not
342 handled, the Python interpreter exits; no stack traceback is printed. If the
343 associated value is a plain integer, it specifies the system exit status (passed
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100344 to C's :c:func:`exit` function); if it is ``None``, the exit status is zero; if
Georg Brandl8ec7f652007-08-15 14:28:01 +0000345 it has another type (such as a string), the object's value is printed and the
346 exit status is one.
347
Georg Brandle3e4c9a2013-10-08 21:43:39 +0200348 Instances have an attribute :attr:`!code` which is set to the proposed exit
Georg Brandl8ec7f652007-08-15 14:28:01 +0000349 status or error message (defaulting to ``None``). Also, this exception derives
350 directly from :exc:`BaseException` and not :exc:`StandardError`, since it is not
351 technically an error.
352
353 A call to :func:`sys.exit` is translated into an exception so that clean-up
354 handlers (:keyword:`finally` clauses of :keyword:`try` statements) can be
355 executed, and so that a debugger can execute a script without running the risk
356 of losing control. The :func:`os._exit` function can be used if it is
357 absolutely positively necessary to exit immediately (for example, in the child
Serhiy Storchakab33336f2013-10-13 23:09:00 +0300358 process after a call to :func:`os.fork`).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000359
360 The exception inherits from :exc:`BaseException` instead of :exc:`StandardError`
361 or :exc:`Exception` so that it is not accidentally caught by code that catches
362 :exc:`Exception`. This allows the exception to properly propagate up and cause
363 the interpreter to exit.
364
365 .. versionchanged:: 2.5
366 Changed to inherit from :exc:`BaseException`.
367
368
369.. exception:: TypeError
370
371 Raised when an operation or function is applied to an object of inappropriate
372 type. The associated value is a string giving details about the type mismatch.
373
374
375.. exception:: UnboundLocalError
376
377 Raised when a reference is made to a local variable in a function or method, but
378 no value has been bound to that variable. This is a subclass of
379 :exc:`NameError`.
380
381 .. versionadded:: 2.0
382
383
384.. exception:: UnicodeError
385
386 Raised when a Unicode-related encoding or decoding error occurs. It is a
387 subclass of :exc:`ValueError`.
388
Benjamin Petersond5f462b2012-12-02 11:33:06 -0500389 :exc:`UnicodeError` has attributes that describe the encoding or decoding
390 error. For example, ``err.object[err.start:err.end]`` gives the particular
391 invalid input that the codec failed on.
392
393 .. attribute:: encoding
394
395 The name of the encoding that raised the error.
396
397 .. attribute:: reason
398
399 A string describing the specific codec error.
400
401 .. attribute:: object
402
403 The object the codec was attempting to encode or decode.
404
405 .. attribute:: start
406
407 The first index of invalid data in :attr:`object`.
408
409 .. attribute:: end
410
411 The index after the last invalid data in :attr:`object`.
412
Georg Brandl8ec7f652007-08-15 14:28:01 +0000413 .. versionadded:: 2.0
414
415
416.. exception:: UnicodeEncodeError
417
418 Raised when a Unicode-related error occurs during encoding. It is a subclass of
419 :exc:`UnicodeError`.
420
421 .. versionadded:: 2.3
422
423
424.. exception:: UnicodeDecodeError
425
426 Raised when a Unicode-related error occurs during decoding. It is a subclass of
427 :exc:`UnicodeError`.
428
429 .. versionadded:: 2.3
430
431
432.. exception:: UnicodeTranslateError
433
434 Raised when a Unicode-related error occurs during translating. It is a subclass
435 of :exc:`UnicodeError`.
436
437 .. versionadded:: 2.3
438
439
440.. exception:: ValueError
441
442 Raised when a built-in operation or function receives an argument that has the
443 right type but an inappropriate value, and the situation is not described by a
444 more precise exception such as :exc:`IndexError`.
445
446
Georg Brandl580d7c12009-02-18 00:31:36 +0000447.. exception:: VMSError
448
449 Only available on VMS. Raised when a VMS-specific error occurs.
450
451
Georg Brandl8ec7f652007-08-15 14:28:01 +0000452.. exception:: WindowsError
453
454 Raised when a Windows-specific error occurs or when the error number does not
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100455 correspond to an :c:data:`errno` value. The :attr:`winerror` and
Georg Brandl8ec7f652007-08-15 14:28:01 +0000456 :attr:`strerror` values are created from the return values of the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100457 :c:func:`GetLastError` and :c:func:`FormatMessage` functions from the Windows
Georg Brandl8ec7f652007-08-15 14:28:01 +0000458 Platform API. The :attr:`errno` value maps the :attr:`winerror` value to
459 corresponding ``errno.h`` values. This is a subclass of :exc:`OSError`.
460
461 .. versionadded:: 2.0
462
463 .. versionchanged:: 2.5
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100464 Previous versions put the :c:func:`GetLastError` codes into :attr:`errno`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000465
466
467.. exception:: ZeroDivisionError
468
469 Raised when the second argument of a division or modulo operation is zero. The
470 associated value is a string indicating the type of the operands and the
471 operation.
472
473The following exceptions are used as warning categories; see the :mod:`warnings`
474module for more information.
475
476
477.. exception:: Warning
478
479 Base class for warning categories.
480
481
482.. exception:: UserWarning
483
484 Base class for warnings generated by user code.
485
486
487.. exception:: DeprecationWarning
488
489 Base class for warnings about deprecated features.
490
491
492.. exception:: PendingDeprecationWarning
493
494 Base class for warnings about features which will be deprecated in the future.
495
496
497.. exception:: SyntaxWarning
498
499 Base class for warnings about dubious syntax
500
501
502.. exception:: RuntimeWarning
503
504 Base class for warnings about dubious runtime behavior.
505
506
507.. exception:: FutureWarning
508
509 Base class for warnings about constructs that will change semantically in the
510 future.
511
512
513.. exception:: ImportWarning
514
515 Base class for warnings about probable mistakes in module imports.
516
517 .. versionadded:: 2.5
518
519
520.. exception:: UnicodeWarning
521
522 Base class for warnings related to Unicode.
523
524 .. versionadded:: 2.5
525
Georg Brandl8ec7f652007-08-15 14:28:01 +0000526
Georg Brandl3cd0bed2009-06-30 16:18:55 +0000527Exception hierarchy
528-------------------
529
530The class hierarchy for built-in exceptions is:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000531
532.. literalinclude:: ../../Lib/test/exception_hierarchy.txt