swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 137f82c270576eba88f0c24ab457db3c4a498840 authored by Nicolas Dandrimont on 05 February 2016, 10:12:55 UTC
sql/upgrades/052: add 051 → 052 upgrade script
Tip revision: 137f82c
exc.py
# Copyright (C) 2015  The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information


class Error(Exception):

    def __str__(self):
        return 'storage error on object: %s' % self.args


class ObjNotFoundError(Error):

    def __str__(self):
        return 'object not found: %s' % self.args


class StorageDBError(Exception):
    """Specific storage db error (connection, erroneous queries, etc...)

    """

    def __str__(self):
        return 'An unexpected error occurred in the backend: %s' % self.args


class StorageAPIError(Exception):
    """Specific internal storage api (mainly connection)

    """

    def __str__(self):
        args = self.args
        return 'An unexpected error occurred in the api backend: %s' % args
back to top