Source code for dynamodb_config_store.exceptions

""" Exception definitions """


[docs]class TableNotCreatedException(Exception): """ Exception thrown if the table could not be created successfull """ pass
[docs]class TableNotReadyException(Exception): """ Exception thrown if the table is not in ACTIVE or UPDATING state """ pass
[docs]class MisconfiguredSchemaException(Exception): """ Exception thrown if the table does not match the configuration """ pass