~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2008-10-17 03:31:02 UTC
  • mto: (0.16.77 shelf-ui)
  • mto: This revision was merged to the branch mainline in revision 3820.
  • Revision ID: aaron@aaronbentley.com-20081017033102-fknu995d8c01ib9c
Update docs, move items to proper files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2890
2890
    def __init__(self, msg):
2891
2891
        self.msg = msg
2892
2892
 
 
2893
 
 
2894
class NoSuchShelfId(BzrError):
 
2895
 
 
2896
    _fmt = 'No changes are shelved with id "%(shelf_id)d".'
 
2897
 
 
2898
    def __init__(self, shelf_id):
 
2899
        BzrError.__init__(self, shelf_id=shelf_id)