blob: 8bd903a31e5801a86bdaa28371f80dced6c77734 [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
223 underlying memory management architecture (C's :cfunc:`malloc` function), the
224 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
252 code from :cdata:`errno`, and the :attr:`strerror` attribute is the
253 corresponding string, as would be printed by the C function :cfunc:`perror`.
254 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
289 wrong. (This exception is mostly a relic from a previous version of the
290 interpreter; it is not used very much any more.)
291
292
293.. exception:: StopIteration
294
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000295 Raised by an :term:`iterator`\'s :meth:`~iterator.next` method to signal that
296 there are no further values. This is derived from :exc:`Exception` rather
297 than :exc:`StandardError`, since this is not considered an error in its
298 normal application.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000299
300 .. versionadded:: 2.2
301
302
303.. exception:: SyntaxError
304
305 Raised when the parser encounters a syntax error. This may occur in an
306 :keyword:`import` statement, in an :keyword:`exec` statement, in a call to the
307 built-in function :func:`eval` or :func:`input`, or when reading the initial
308 script or standard input (also interactively).
309
Georg Brandl8ec7f652007-08-15 14:28:01 +0000310 Instances of this class have attributes :attr:`filename`, :attr:`lineno`,
311 :attr:`offset` and :attr:`text` for easier access to the details. :func:`str`
312 of the exception instance returns only the message.
313
314
Georg Brandl28dadd92011-02-25 10:50:32 +0000315.. exception:: IndentationError
316
317 Base class for syntax errors related to incorrect indentation. This is a
318 subclass of :exc:`SyntaxError`.
319
320
321.. exception:: TabError
322
323 Raised when indentation contains an inconsistent use of tabs and spaces.
324 This is a subclass of :exc:`IndentationError`.
325
326
Georg Brandl8ec7f652007-08-15 14:28:01 +0000327.. exception:: SystemError
328
329 Raised when the interpreter finds an internal error, but the situation does not
330 look so serious to cause it to abandon all hope. The associated value is a
331 string indicating what went wrong (in low-level terms).
332
333 You should report this to the author or maintainer of your Python interpreter.
334 Be sure to report the version of the Python interpreter (``sys.version``; it is
335 also printed at the start of an interactive Python session), the exact error
336 message (the exception's associated value) and if possible the source of the
337 program that triggered the error.
338
339
340.. exception:: SystemExit
341
342 This exception is raised by the :func:`sys.exit` function. When it is not
343 handled, the Python interpreter exits; no stack traceback is printed. If the
344 associated value is a plain integer, it specifies the system exit status (passed
345 to C's :cfunc:`exit` function); if it is ``None``, the exit status is zero; if
346 it has another type (such as a string), the object's value is printed and the
347 exit status is one.
348
Georg Brandl8ec7f652007-08-15 14:28:01 +0000349 Instances have an attribute :attr:`code` which is set to the proposed exit
350 status or error message (defaulting to ``None``). Also, this exception derives
351 directly from :exc:`BaseException` and not :exc:`StandardError`, since it is not
352 technically an error.
353
354 A call to :func:`sys.exit` is translated into an exception so that clean-up
355 handlers (:keyword:`finally` clauses of :keyword:`try` statements) can be
356 executed, and so that a debugger can execute a script without running the risk
357 of losing control. The :func:`os._exit` function can be used if it is
358 absolutely positively necessary to exit immediately (for example, in the child
359 process after a call to :func:`fork`).
360
361 The exception inherits from :exc:`BaseException` instead of :exc:`StandardError`
362 or :exc:`Exception` so that it is not accidentally caught by code that catches
363 :exc:`Exception`. This allows the exception to properly propagate up and cause
364 the interpreter to exit.
365
366 .. versionchanged:: 2.5
367 Changed to inherit from :exc:`BaseException`.
368
369
370.. exception:: TypeError
371
372 Raised when an operation or function is applied to an object of inappropriate
373 type. The associated value is a string giving details about the type mismatch.
374
375
376.. exception:: UnboundLocalError
377
378 Raised when a reference is made to a local variable in a function or method, but
379 no value has been bound to that variable. This is a subclass of
380 :exc:`NameError`.
381
382 .. versionadded:: 2.0
383
384
385.. exception:: UnicodeError
386
387 Raised when a Unicode-related encoding or decoding error occurs. It is a
388 subclass of :exc:`ValueError`.
389
390 .. versionadded:: 2.0
391
392
393.. exception:: UnicodeEncodeError
394
395 Raised when a Unicode-related error occurs during encoding. It is a subclass of
396 :exc:`UnicodeError`.
397
398 .. versionadded:: 2.3
399
400
401.. exception:: UnicodeDecodeError
402
403 Raised when a Unicode-related error occurs during decoding. It is a subclass of
404 :exc:`UnicodeError`.
405
406 .. versionadded:: 2.3
407
408
409.. exception:: UnicodeTranslateError
410
411 Raised when a Unicode-related error occurs during translating. It is a subclass
412 of :exc:`UnicodeError`.
413
414 .. versionadded:: 2.3
415
416
417.. exception:: ValueError
418
419 Raised when a built-in operation or function receives an argument that has the
420 right type but an inappropriate value, and the situation is not described by a
421 more precise exception such as :exc:`IndexError`.
422
423
Georg Brandl580d7c12009-02-18 00:31:36 +0000424.. exception:: VMSError
425
426 Only available on VMS. Raised when a VMS-specific error occurs.
427
428
Georg Brandl8ec7f652007-08-15 14:28:01 +0000429.. exception:: WindowsError
430
431 Raised when a Windows-specific error occurs or when the error number does not
432 correspond to an :cdata:`errno` value. The :attr:`winerror` and
433 :attr:`strerror` values are created from the return values of the
434 :cfunc:`GetLastError` and :cfunc:`FormatMessage` functions from the Windows
435 Platform API. The :attr:`errno` value maps the :attr:`winerror` value to
436 corresponding ``errno.h`` values. This is a subclass of :exc:`OSError`.
437
438 .. versionadded:: 2.0
439
440 .. versionchanged:: 2.5
441 Previous versions put the :cfunc:`GetLastError` codes into :attr:`errno`.
442
443
444.. exception:: ZeroDivisionError
445
446 Raised when the second argument of a division or modulo operation is zero. The
447 associated value is a string indicating the type of the operands and the
448 operation.
449
450The following exceptions are used as warning categories; see the :mod:`warnings`
451module for more information.
452
453
454.. exception:: Warning
455
456 Base class for warning categories.
457
458
459.. exception:: UserWarning
460
461 Base class for warnings generated by user code.
462
463
464.. exception:: DeprecationWarning
465
466 Base class for warnings about deprecated features.
467
468
469.. exception:: PendingDeprecationWarning
470
471 Base class for warnings about features which will be deprecated in the future.
472
473
474.. exception:: SyntaxWarning
475
476 Base class for warnings about dubious syntax
477
478
479.. exception:: RuntimeWarning
480
481 Base class for warnings about dubious runtime behavior.
482
483
484.. exception:: FutureWarning
485
486 Base class for warnings about constructs that will change semantically in the
487 future.
488
489
490.. exception:: ImportWarning
491
492 Base class for warnings about probable mistakes in module imports.
493
494 .. versionadded:: 2.5
495
496
497.. exception:: UnicodeWarning
498
499 Base class for warnings related to Unicode.
500
501 .. versionadded:: 2.5
502
Georg Brandl8ec7f652007-08-15 14:28:01 +0000503
Georg Brandl3cd0bed2009-06-30 16:18:55 +0000504Exception hierarchy
505-------------------
506
507The class hierarchy for built-in exceptions is:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000508
509.. literalinclude:: ../../Lib/test/exception_hierarchy.txt