#6880: add reference to classes section in exceptions section, which comes earlier.

This commit is contained in:
Georg Brandl 2009-09-16 09:23:04 +00:00
parent 076ca5a430
commit 49bb9b7f0a
1 changed files with 4 additions and 3 deletions

View File

@ -245,9 +245,10 @@ re-raise the exception::
User-defined Exceptions User-defined Exceptions
======================= =======================
Programs may name their own exceptions by creating a new exception class. Programs may name their own exceptions by creating a new exception class (see
Exceptions should typically be derived from the :exc:`Exception` class, either :ref:`tut-classes` for more about Python classes). Exceptions should typically
directly or indirectly. For example:: be derived from the :exc:`Exception` class, either directly or indirectly. For
example::
>>> class MyError(Exception): >>> class MyError(Exception):
... def __init__(self, value): ... def __init__(self, value):