~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-08-02 23:14:41 UTC
  • Revision ID: mbp@sourcefrog.net-20050802231441-d738a6e6ffd03c3e
- new error RevisionNotPresent

- raise this when trying to fetch a revision that's mentioned but not 
  in the revision store

- Store raises an IndexError from getitem method if key is not found

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
class PointlessCommit(Exception):
84
84
    """Commit failed because nothing was changed."""
 
85
 
 
86
 
 
87
class RevisionNotPresent(Exception):
 
88
    """Revision not present in branch.
 
89
 
 
90
    (It might be a valid revision somewhere else."""
 
91