exception documentation

class AuthFailure(Failure): (source)

View In Hierarchy

An authentication failure, e.g. due to an incorrect ``sudo`` password. .. note:: `.Result` objects attached to these exceptions typically lack exit code information, since the command was never fully executed - the exception was raised instead. .. versionadded:: 1.0

Method __init__ Undocumented
Method __str__ Undocumented
Instance Variable prompt Undocumented
Instance Variable result Undocumented

Inherited from Failure:

Method __repr__ Undocumented
Method streams_for_display Return stdout/err streams as necessary for error display.
Instance Variable reason Undocumented
Method _repr Return ``__repr__``-like value from inner result + any kwargs.
def __init__(self, result, prompt): (source)

Undocumented

def __str__(self): (source)

Undocumented

Undocumented