exception documentation

class RaisedArgs(Exception):

Constructor: RaisedArgs(args, kwargs)

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

Store the positional and keyword arguments as attributes.

Parameters
argsThe positional args.
kwargsThe keyword args.
args =

Undocumented

kwargs =

Undocumented