view hglib/error.py @ 28:221eeb3693f4

client: add add command
author Idan Kamara <idankk86@gmail.com>
date Sun, 14 Aug 2011 00:48:19 +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