/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: Vincent Ladeuil
  • Date: 2010-10-15 11:20:45 UTC
  • mfrom: (5499 +trunk)
  • mto: (5499.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5500.
  • Revision ID: v.ladeuil+lp@free.fr-20101015112045-5133zwua3wu4k4xk
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1395
1395
 
1396
1396
class WeaveInvalidChecksum(WeaveError):
1397
1397
 
1398
 
    _fmt = "Text did not match it's checksum: %(msg)s"
 
1398
    _fmt = "Text did not match its checksum: %(msg)s"
1399
1399
 
1400
1400
 
1401
1401
class WeaveTextDiffers(WeaveError):
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.')