jan.dittberner 8900c512d4 PEP-8 clean migrate.changeset, updated CHANGELOG, updated api.rst
- code cleanup in the remaining migrate.changeset files
- add migrate.changeset.exceptions and migrate.changeset.schema to api.rst
- add more information to CHANGELOG
2009-01-25 16:28:06 +00:00

25 lines
301 B
Python

"""
This module provides exception classes.
"""
class Error(Exception):
"""
Changeset error.
"""
pass
class NotSupportedError(Error):
"""
Not supported error.
"""
pass
class InvalidConstraintError(Error):
"""
Invalid constraint error.
"""
pass