Mercurial > python-hglib
view hglib/error.py @ 25:85ae94b98324
client: add missing options to incoming
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Thu, 11 Aug 2011 22:58:17 +0300 |
parents | 79f88b4db15f |
children | 00bb0701323a |
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 class ServerError(Exception): pass class ResponseError(ServerError, ValueError): pass class CapabilityError(ServerError): pass