def save(self):
try:
self._cache_obj.save()
except peewee.IntegrityError as e:
if 'UNIQUE' in str(e):
raise exceptions.AlreadyExists(e)
else:
raise exceptions.DoesNotExist(e)