class documentation

class DatabaseErrorWrapper:

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):

Undocumented

def __enter__(self):

Undocumented

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

Undocumented

def __init__(self, wrapper):

wrapper is a database wrapper.

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

wrapper =

Undocumented