~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Tim Penhey
  • Date: 2008-05-09 04:25:43 UTC
  • mto: (3473.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3474.
  • Revision ID: tim@penhey.net-20080509042543-71sp5fsk51buvaie
Updates from Aaron's review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2678
2678
        self.path = path
2679
2679
        self.kind = kind
2680
2680
        self.user_encoding = osutils.get_user_encoding()
 
2681
 
 
2682
 
 
2683
class NoSuchAlias(BzrError):
 
2684
 
 
2685
    _fmt = ('The alias "%(alias_name)s" does not exist.')
 
2686
 
 
2687
    def __init__(self, alias_name):
 
2688
        BzrError.__init__(self, alias_name=alias_name)