~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-07-29 22:45:57 UTC
  • Revision ID: mbp@sourcefrog.net-20050729224556-3b0c6f9c8c974755
- add InvalidRevisionNumber and Id exceptions

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    pass
30
30
 
31
31
 
 
32
class InvalidRevisionNumber(BzrError):
 
33
    pass
 
34
 
 
35
 
 
36
class InvalidRevisionId(BzrError):
 
37
    pass
 
38
 
 
39
 
32
40
class BzrCommandError(BzrError):
33
41
    # Error from malformed user command
34
42
    pass