diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-09 09:24:55 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-09 09:24:55 -0400 |
commit | a48ee1b397249302305eb00998e287c62d898c68 (patch) | |
tree | bb850f100116c8ddd155160e56b430ba26d3607d /lib/sqlalchemy/exc.py | |
parent | ce7768e3130ce1f83796c6090307e4591cbbfc45 (diff) | |
download | sqlalchemy-a48ee1b397249302305eb00998e287c62d898c68.tar.gz |
- add doc pages for exceptions
Diffstat (limited to 'lib/sqlalchemy/exc.py')
-rw-r--r-- | lib/sqlalchemy/exc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/exc.py b/lib/sqlalchemy/exc.py index 1c412824c..003969f56 100644 --- a/lib/sqlalchemy/exc.py +++ b/lib/sqlalchemy/exc.py @@ -5,9 +5,9 @@ """Exceptions used with SQLAlchemy. -The base exception class is SQLAlchemyError. Exceptions which are raised as a +The base exception class is :class:`.SQLAlchemyError`. Exceptions which are raised as a result of DBAPI exceptions are all subclasses of -:class:`~sqlalchemy.exc.DBAPIError`. +:class:`.DBAPIError`. """ |