smok-serwis/tempsdb

View on GitHub
tempsdb/exceptions.pyx

Summary

Maintainability
Test Coverage
A
100%
class TempsDBError(Exception):
    """Base class for TempsDB errors"""
    ...

class DoesNotExist(TempsDBError):
    """The required resource does not exist"""
    ...

class Corruption(TempsDBError):
    """Corruption was detected in the dataset"""
    ...

class InvalidState(TempsDBError):
    """An attempt was made to write to a resource that's closed"""
    ...

class AlreadyExists(TempsDBError):
    """Provided object already exists"""
    ...

class StillOpen(TempsDBError):
    """This resource has outstanding references and cannot be closed"""
    ...

class EnvironmentError(TempsDBError):
    """
    The environment is misconfigured, eg. minijson is required but is not installed
    """
    ...