
- code cleanup in the remaining migrate.changeset files - add migrate.changeset.exceptions and migrate.changeset.schema to api.rst - add more information to CHANGELOG
25 lines
301 B
Python
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
|