/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2008-06-05 05:53:31 UTC
  • mfrom: (3474 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3475.
  • Revision ID: mbp@sourcefrog.net-20080605055331-6s2tzzkh1m6bya3v
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
2723
2723
        self.user_encoding = osutils.get_user_encoding()
2724
2724
 
2725
2725
 
 
2726
class NoSuchAlias(BzrError):
 
2727
 
 
2728
    _fmt = ('The alias "%(alias_name)s" does not exist.')
 
2729
 
 
2730
    def __init__(self, alias_name):
 
2731
        BzrError.__init__(self, alias_name=alias_name)
 
2732
 
 
2733
 
2726
2734
class CannotBindAddress(BzrError):
2727
2735
 
2728
2736
    _fmt = 'Cannot bind address "%(host)s:%(port)i": %(orig_error)s.'