Package buildslave :: Module exceptions
[frames] | no frames]

Source Code for Module buildslave.exceptions

1 -class AbandonChain(Exception):
2 """A series of chained steps can raise this exception to indicate that 3 one of the intermediate RunProcesses has failed, such that there is no 4 point in running the remainder. 'rc' should be the non-zero exit code of 5 the failing ShellCommand.""" 6
7 - def __repr__(self):
8 return "<AbandonChain rc=%s>" % self.args[0]
9