/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 breezy/errors.py

  • Committer: Vincent Ladeuil
  • Author(s): Jelmer Vernooij
  • Date: 2018-03-01 05:20:51 UTC
  • mfrom: (6861.3.1 no-such-repo)
  • Revision ID: v.ladeuil+lp@free.fr-20180301052051-j893oba0qhvtfk0n
Remove unused NoSuchIdInRepository exception.

Merged from https://code.launchpad.net/~jelmer/brz/no-such-repo/+merge/339451

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
        self.tree = tree
246
246
 
247
247
 
248
 
class NoSuchIdInRepository(NoSuchId):
249
 
 
250
 
    _fmt = ('The file id "%(file_id)s" is not present in the repository'
251
 
            ' %(repository)r')
252
 
 
253
 
    def __init__(self, repository, file_id):
254
 
        BzrError.__init__(self, repository=repository, file_id=file_id)
255
 
 
256
 
 
257
248
class NotStacked(BranchError):
258
249
 
259
250
    _fmt = "The branch '%(branch)s' is not stacked."