Section 6.4. Exception Objects


6.4. Exception Objects

Exceptions are instances of subclasses of the built-in, legacy-style Exception class.[*] An instance of any subclass of Exception has an attribute args, the tuple of arguments used to create the instance. args holds error-specific information, usable for diagnostic or recovery purposes. In Python 2.5, class Exception is new-style, since it inherits from the new built-in new-style class BaseException; this, in turn, makes all built-in exception classes new-style in Python 2.5. For detailed explanations of how the standard exception hierarchy changes in 2.5, and how things will move further in 3.0, see http://python.org/doc/peps/pep-0352/.

[*] For backward compatibility, Python also lets you use strings, or instances of any legacy class, as exception objects, but such usage risks future incompatibility and gives no benefits.

6.4.1. The Hierarchy of Standard Exceptions

All exceptions that Python itself raises are instances of subclasses of Exception. The inheritance structure of exception classes is important, as it determines which except clauses handle which exceptions. In Python 2.5, however, classes KeyboardInterrupt and SystemExit inherit directly from the new class BaseException and are not subclasses of Exception: the new arrangement makes it more likely that a general handler clause coded as except Exception: does what's intended, since you rarely want to catch KeyboardInterrupt and SystemExit (exception handlers are covered in "try/except" on page 122).

In Python 2.3 and 2.4, the SystemExit, StopIteration, and Warning classes inherit directly from Exception. Instances of SystemExit are normally raised by the exit function in module sys (covered in exit on page 169). StopIteration is used in the iteration protocol, covered in "Iterators" on page 65. Warning is covered in "The warnings Module" on page 471. Other standard exceptions derive from StandardError, a direct subclass of Exception. In Python 2.5, class GeneratorExit, covered in "Generator enhancements" on page 126, also inherits directly from Exception, while the rest of the standard exception hierarchy is like the one in 2.3 and 2.4, covered in the following.

Three subclasses of StandardError, like StandardError itself and Exception, are never instantiated directly (at least, not by Python itself). Their purpose is to make it easier for you to specify except clauses that handle a broad range of related errors. These three abstract subclasses of StandardError are:


ArithmeticError

The base class for exceptions due to arithmetic errors (i.e., OverflowError, ZeroDivisionError, FloatingPointError)


LookupError

The base class for exceptions that a container raises when it receives an invalid key or index (i.e., IndexError, KeyError)


EnvironmentError

The base class for exceptions due to external causes (i.e., IOError, OSError, WindowsError)

 Exception     SystemExit     StandardError           AssertionError, AttributeError, ImportError,           KeyboardInterrupt, MemoryError,           NotImplementedError, SystemError, TypeError,           UnicodeError, ValueError           NameError                 UnboundLocalError           SyntaxError                 IndentationError           ArithmeticError                 FloatingPointError, OverflowError, ZeroDivisionError           LookupError                 IndexError, KeyError           EnvironmentError                 IOError                 OSError                       WindowsError     StopIteration     Warning 

6.4.2. Standard Exception Classes

Common runtime errors raise exceptions of the following classes:


AssertionError

An assert statement failed.


AttributeError

An attribute reference or assignment failed.


FloatingPointError

A floating-point operation failed. Derived from ArithmeticError.


IOError

An I/O operation failed (e.g., the disk was full, a file was not found, or needed permissions were missing). Derived from EnvironmentError.


ImportError

An import statement (covered in "The import Statement" on page 140) cannot find the module to import or cannot find a name specifically requested from the module.


IndentationError

The parser encountered a syntax error due to incorrect indentation. Derived from SyntaxError.


IndexError

An integer used to index a sequence is out of range (using a noninteger as a sequence index raises TypeError). Derived from LookupError.


KeyError

A key used to index a mapping is not in the mapping. Derived from LookupError.


KeyboardInterrupt

The user pressed the interrupt key (Ctrl-C, Ctrl-Break, or Delete, depending on the platform).


MemoryError

An operation ran out of memory.


NameError

A variable was referenced, but its name was not bound.


NotImplementedError

Raised by abstract base classes to indicate that a concrete subclass must override a method.


OSError

Raised by functions in module os (covered in "The os Module" on page 240 and "Running Other Programs with the os Module" on page 354) to indicate platform-dependent errors. Derived from EnvironmentError.


OverflowError

The result of an operation on an integer is too large to fit into an integer (operator << did not raise this exception; rather, it dropped excess bits). Derived from ArithmeticError. Dates back to Python 2.1; in today's Python versions, too-large integer results implicitly become long integers, without raising exceptions. This standard exception remained a built-in for backward compatibility (to support existing code that raises or tries to catch it). Do not use in any new code.


SyntaxError

The parser encountered a syntax error.


SystemError

An internal error within Python itself or some extension module. You should report this to the authors and maintainers of Python, or of the extension in question, with all possible details to allow them to reproduce the problem.


TypeError

An operation or function was applied to an object of an inappropriate type.


UnboundLocalError

A reference was made to a local variable, but no value is currently bound to that local variable. Derived from NameError.


UnicodeError

An error occurred while converting Unicode to a string or vice versa.


ValueError

An operation or function was applied to an object that has a correct type but an inappropriate value, and nothing more specific (e.g., KeyError) applies.


WindowsError

Raised by functions in module os (covered in "The os Module" on page 240 and "Running Other Programs with the os Module" on page 354) to indicate Windows-specific errors. Derived from OsError.


ZeroDivisionError

A divisor (the righthand operand of a /, //, or % operator, or the second argument to built-in function divmod) is 0. Derived from ArithmeticError.




Python in a Nutshell
Python in a Nutshell, Second Edition (In a Nutshell)
ISBN: 0596100469
EAN: 2147483647
Year: 2004
Pages: 192
Authors: Alex Martelli

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net