view hglib/error.py @ 103:e5d3b0aa48e6

Added tag 0.2 for changeset cc2b7540fa2b
author Matt Mackall <mpm@selenic.com>
date Tue, 17 Jan 2012 17:15:47 -0600
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