Mercurial > python-hglib
view hglib/error.py @ 92:07efbd3bd09a
hglib: change init to not open a command server instance automatically
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Thu, 22 Dec 2011 19:12:47 +0200 |
parents | 00bb0701323a |
children | 59cb26bf866e |
line wrap: on
line source
class CommandError(Exception): def __init__(self, args, ret, out, err): self.args = args self.ret = ret self.out = out self.err = err def __str__(self): return self.err class ServerError(Exception): pass class ResponseError(ServerError, ValueError): pass class CapabilityError(ServerError): pass