~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2006-03-03 03:09:07 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060303030907-6af33664f8791e78
Move responsibility for repository.has_revision into RevisionStore

Show diffs side-by-side

added added

removed removed

Lines of Context:
755
755
    def __init__(self, tree):
756
756
        BzrNewError.__init__(self)
757
757
        self.tree = tree
 
758
 
 
759
 
 
760
class InventoryNotPresent(BzrNewError):
 
761
    """Inventory for revision $(revision_id)s is missing."""
 
762
 
 
763
    def __init__(self, revision_id):
 
764
        BzrNewError.__init__(self)
 
765
        self.revision_id = revision_id
 
766