~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:33:08 UTC
  • mfrom: (0.12.68 shelf-manager)
  • mto: This revision was merged to the branch mainline in revision 3823.
  • Revision ID: aaron@aaronbentley.com-20081017033308-dnke9bvbvb5vrys5
Merge shelf-manager into shelf-ui

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)