Rearrange storage modules

This commit is contained in:
Erik Johnston 2015-03-20 13:52:56 +00:00
parent 532ebc4a82
commit 87db64b839
7 changed files with 493 additions and 515 deletions

View file

@ -789,6 +789,13 @@ class SQLBaseStore(object):
return result[0] if result else None
class _RollbackButIsFineException(Exception):
""" This exception is used to rollback a transaction without implying
something went wrong.
"""
pass
class Table(object):
""" A base class used to store information about a particular table.
"""