~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Reconcile NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1476
1476
        self.details = details
1477
1477
 
1478
1478
 
 
1479
class UnknownSmartMethod(InternalBzrError):
 
1480
 
 
1481
    _fmt = "The server does not recognise the '%(verb)s' request."
 
1482
 
 
1483
    def __init__(self, verb):
 
1484
        self.verb = verb
 
1485
 
 
1486
 
1479
1487
# A set of semi-meaningful errors which can be thrown
1480
1488
class TransportNotPossible(TransportError):
1481
1489