Source code for flask_dynamo.errors

"""Custom errors."""


[docs]class ConfigurationError(Exception): """ This exception is raised if the user hasn't properly configured Flask-Dynamo. """ pass

Related Topics