exception documentation

class ResolverFactoryArguments(Exception): (source)

View In Hierarchy

Raised by raisingResolverFactory with the *args and **kwargs passed to that function.

Method __init__ Store the supplied args and kwargs as attributes.
Instance Variable args Undocumented
Instance Variable kwargs Undocumented
def __init__(self, args, kwargs): (source)

Store the supplied args and kwargs as attributes.

Parameters
argsPositional arguments.
kwargsKeyword arguments.

Undocumented

Undocumented