Source code for vcs.error

"Error object for vcs module, vcsError"


[docs]class vcsError (Exception): def __init__(self, args=None): self.args = (args,) def __str__(self): return str(self.args[0])