class documentation

class DatabaseErrorWrapper: (source)

View In Hierarchy

Context manager and decorator that reraises backend-specific database exceptions using Django's common wrappers.

Method __call__ Undocumented
Method __enter__ Undocumented
Method __exit__ Undocumented
Method __init__ wrapper is a database wrapper.
Instance Variable wrapper Undocumented
def __call__(self, func): (source)

Undocumented

def __enter__(self): (source)

Undocumented

def __exit__(self, exc_type, exc_value, traceback): (source)

Undocumented

def __init__(self, wrapper): (source)

wrapper is a database wrapper. It must have a Database attribute defining PEP-249 exceptions.

Undocumented