/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: Canonical.com Patch Queue Manager
  • Date: 2010-10-15 10:14:53 UTC
  • mfrom: (5447.4.21 config-modify)
  • Revision ID: pqm@pqm.ubuntu.com-20101015101453-ran88oqq3a5qb7jw
(vila) Add ``bzr config` command. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2945
2945
        self.user_encoding = osutils.get_user_encoding()
2946
2946
 
2947
2947
 
 
2948
class NoSuchConfig(BzrError):
 
2949
 
 
2950
    _fmt = ('The "%(config_id)s" configuration does not exist.')
 
2951
 
 
2952
    def __init__(self, config_id):
 
2953
        BzrError.__init__(self, config_id=config_id)
 
2954
 
 
2955
 
 
2956
class NoSuchConfigOption(BzrError):
 
2957
 
 
2958
    _fmt = ('The "%(option_name)s" configuration option does not exist.')
 
2959
 
 
2960
    def __init__(self, option_name):
 
2961
        BzrError.__init__(self, option_name=option_name)
 
2962
 
 
2963
 
2948
2964
class NoSuchAlias(BzrError):
2949
2965
 
2950
2966
    _fmt = ('The alias "%(alias_name)s" does not exist.')