~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2010-07-17 16:36:00 UTC
  • mfrom: (5050.3.9 2.2)
  • mto: (5050.3.10 2.2)
  • mto: This revision was merged to the branch mainline in revision 5365.
  • Revision ID: mbp@canonical.com-20100717163600-jaw27ncuhkhkz8sy
merge news from 2.2b4

Show diffs side-by-side

added added

removed removed

Lines of Context:
947
947
    # original exception is available as e.original_error
948
948
    #
949
949
    # New code should prefer to raise specific subclasses
950
 
    def __init__(self, message):
951
 
        # Python 2.5 uses a slot for StandardError.message,
952
 
        # so use a different variable name.  We now work around this in
953
 
        # BzrError.__str__, but this member name is kept for compatability.
954
 
        self.msg = message
 
950
    def __init__(self, msg):
 
951
        self.msg = msg
955
952
 
956
953
 
957
954
class LockActive(LockError):
1378
1375
 
1379
1376
class WeaveParentMismatch(WeaveError):
1380
1377
 
1381
 
    _fmt = "Parents are mismatched between two revisions. %(message)s"
 
1378
    _fmt = "Parents are mismatched between two revisions. %(msg)s"
1382
1379
 
1383
1380
 
1384
1381
class WeaveInvalidChecksum(WeaveError):
1385
1382
 
1386
 
    _fmt = "Text did not match it's checksum: %(message)s"
 
1383
    _fmt = "Text did not match it's checksum: %(msg)s"
1387
1384
 
1388
1385
 
1389
1386
class WeaveTextDiffers(WeaveError):
1437
1434
 
1438
1435
class VersionedFileInvalidChecksum(VersionedFileError):
1439
1436
 
1440
 
    _fmt = "Text did not match its checksum: %(message)s"
 
1437
    _fmt = "Text did not match its checksum: %(msg)s"
1441
1438
 
1442
1439
 
1443
1440
class KnitError(InternalBzrError):
3149
3146
    def __init__(self, bzrdir):
3150
3147
        self.bzrdir = bzrdir
3151
3148
 
 
3149
 
3152
3150
class NoWhoami(BzrError):
3153
3151
 
3154
3152
    _fmt = ('Unable to determine your name.\n'
3155
3153
        "Please, set your name with the 'whoami' command.\n"
3156
3154
        'E.g. bzr whoami "Your Name <name@example.com>"')
3157
3155
 
 
3156
 
3158
3157
class InvalidPattern(BzrError):
3159
3158
 
3160
 
    _fmt = ('Invalid pattern(s) found. %(message)s')
3161
 
 
3162
 
    def __init__(self, message):
3163
 
        self.message = message
 
3159
    _fmt = ('Invalid pattern(s) found. %(msg)s')
 
3160
 
 
3161
    def __init__(self, msg):
 
3162
        self.msg = msg
 
3163
 
 
3164
 
 
3165
class RecursiveBind(BzrError):
 
3166
 
 
3167
    _fmt = ('Branch "%(branch_url)s" appears to be bound to itself. '
 
3168
        'Please use `bzr unbind` to fix.')
 
3169
 
 
3170
    def __init__(self, branch_url):
 
3171
        self.branch_url = branch_url
3164
3172