view hglib/error.py @ 32:a2fc0a7f648e

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