exception documentation

class RaisedArgs(Exception): (source)

View In Hierarchy

An exception which can be raised by fakes to test that the fake is called with expected arguments.

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

Store the positional and keyword arguments as attributes.

Parameters
argsThe positional args.
kwargsThe keyword args.

Undocumented

Undocumented