diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-18 23:53:40 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-18 23:53:40 +0000 |
commit | ba0267a955d40efb09de06ce226fbab63994aa78 (patch) | |
tree | b2a24709e6b3c474949e0ee50b2755c24cc49e56 /lib/sqlalchemy/exceptions.py | |
parent | 1dc4546aa95d3adfff910430afe922bf137bf595 (diff) | |
download | sqlalchemy-ba0267a955d40efb09de06ce226fbab63994aa78.tar.gz |
introductory docstring bonanza
Diffstat (limited to 'lib/sqlalchemy/exceptions.py')
-rw-r--r-- | lib/sqlalchemy/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/exceptions.py b/lib/sqlalchemy/exceptions.py index dd0f89737..8338bc554 100644 --- a/lib/sqlalchemy/exceptions.py +++ b/lib/sqlalchemy/exceptions.py @@ -3,7 +3,10 @@ # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php +"""Exceptions used with SQLAlchemy. +The base exception class is SQLAlchemyError. Exceptions which are raised as a result +of DBAPI exceptions are all subclasses of [sqlalchemy.exceptions#DBAPIError].""" class SQLAlchemyError(Exception): """Generic error class.""" |