/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-05 21:23:34 UTC
  • mto: This revision was merged to the branch mainline in revision 3701.
  • Revision ID: john@arbash-meinel.com-20080905212334-69j0qvvr9trvfk1b
Respond to Martin's review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
666
666
        self.actual = actual
667
667
 
668
668
 
669
 
class OverlappingReadv(BzrError):
670
 
    """Raised when a readv() requests overlapping chunks of data.
671
 
 
672
 
    Not all transports supports this, so the api should generally forbid it.
673
 
    (It isn't a feature we need anyway.
674
 
    """
675
 
 
676
 
    _fmt = 'Requested readv ranges overlap'
677
 
 
678
 
 
679
669
class PathNotChild(PathError):
680
670
 
681
671
    _fmt = 'Path "%(path)s" is not a child of path "%(base)s"%(extra)s'