~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

(vila) Provide a config section matcher respecting the file order. (Vincent
 Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
700
700
       self.path = urlutils.unescape_for_display(branch.base, 'ascii')
701
701
 
702
702
 
703
 
class AlreadyControlDirError(PathError):
704
 
 
705
 
    _fmt = 'A control directory already exists: "%(path)s".'
706
 
 
707
 
 
708
703
class AlreadyBranchError(PathError):
709
704
 
710
705
    _fmt = 'Already a branch: "%(path)s".'
711
706
 
712
707
 
713
 
class ParentBranchExists(AlreadyBranchError):
714
 
 
715
 
    _fmt = 'Parent branch already exists: "%(path)s".'
716
 
 
717
 
 
718
708
class BranchExistsWithoutWorkingTree(PathError):
719
709
 
720
710
    _fmt = 'Directory contains a branch, but no working tree \
1677
1667
        TransportError.__init__(self, msg, orig_error=orig_error)
1678
1668
 
1679
1669
 
1680
 
class CertificateError(TransportError):
1681
 
 
1682
 
    _fmt = "Certificate error: %(error)s"
1683
 
 
1684
 
    def __init__(self, error):
1685
 
        self.error = error
1686
 
 
1687
 
 
1688
1670
class InvalidHttpRange(InvalidHttpResponse):
1689
1671
 
1690
1672
    _fmt = "Invalid http range %(range)r for %(path)s: %(msg)s"