~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2010-08-27 17:53:08 UTC
  • mfrom: (5390 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5393.
  • Revision ID: john@arbash-meinel.com-20100827175308-qsvcc11dkfvkrny1
Merge bzr.dev 5390

Show diffs side-by-side

added added

removed removed

Lines of Context:
949
949
    # original exception is available as e.original_error
950
950
    #
951
951
    # New code should prefer to raise specific subclasses
952
 
    def __init__(self, message):
953
 
        # Python 2.5 uses a slot for StandardError.message,
954
 
        # so use a different variable name.  We now work around this in
955
 
        # BzrError.__str__, but this member name is kept for compatability.
956
 
        self.msg = message
 
952
    def __init__(self, msg):
 
953
        self.msg = msg
957
954
 
958
955
 
959
956
class LockActive(LockError):
1381
1378
 
1382
1379
class WeaveParentMismatch(WeaveError):
1383
1380
 
1384
 
    _fmt = "Parents are mismatched between two revisions. %(message)s"
 
1381
    _fmt = "Parents are mismatched between two revisions. %(msg)s"
1385
1382
 
1386
1383
 
1387
1384
class WeaveInvalidChecksum(WeaveError):
1388
1385
 
1389
 
    _fmt = "Text did not match it's checksum: %(message)s"
 
1386
    _fmt = "Text did not match it's checksum: %(msg)s"
1390
1387
 
1391
1388
 
1392
1389
class WeaveTextDiffers(WeaveError):
1440
1437
 
1441
1438
class VersionedFileInvalidChecksum(VersionedFileError):
1442
1439
 
1443
 
    _fmt = "Text did not match its checksum: %(message)s"
 
1440
    _fmt = "Text did not match its checksum: %(msg)s"
1444
1441
 
1445
1442
 
1446
1443
class KnitError(InternalBzrError):
1987
1984
        "Use --keep to not delete them, or --force to delete them regardless.")
1988
1985
 
1989
1986
    def __init__(self, tree_delta):
 
1987
        symbol_versioning.warn(symbol_versioning.deprecated_in((2, 3, 0)) %
 
1988
            "BzrRemoveChangedFilesError", DeprecationWarning, stacklevel=2)
1990
1989
        BzrError.__init__(self)
1991
1990
        self.changes_as_text = tree_delta.get_changes_as_text()
1992
1991
        #self.paths_as_string = '\n'.join(changed_files)
2846
2845
        else:
2847
2846
            more = ' ' + more
2848
2847
        import bzrlib.urlutils as urlutils
2849
 
        display_url = urlutils.unescape_for_display(
2850
 
            tree.user_url, 'ascii')
 
2848
        user_url = getattr(tree, "user_url", None)
 
2849
        if user_url is None:
 
2850
            display_url = str(tree)
 
2851
        else:
 
2852
            display_url = urlutils.unescape_for_display(user_url, 'ascii')
2851
2853
        BzrError.__init__(self, tree=tree, display_url=display_url, more=more)
2852
2854
 
2853
2855
 
3152
3154
    def __init__(self, bzrdir):
3153
3155
        self.bzrdir = bzrdir
3154
3156
 
 
3157
 
3155
3158
class NoWhoami(BzrError):
3156
3159
 
3157
3160
    _fmt = ('Unable to determine your name.\n'
3158
3161
        "Please, set your name with the 'whoami' command.\n"
3159
3162
        'E.g. bzr whoami "Your Name <name@example.com>"')
3160
3163
 
 
3164
 
3161
3165
class InvalidPattern(BzrError):
3162
3166
 
3163
3167
    _fmt = ('Invalid pattern(s) found. %(msg)s')
3165
3169
    def __init__(self, msg):
3166
3170
        self.msg = msg
3167
3171
 
 
3172
 
 
3173
class RecursiveBind(BzrError):
 
3174
 
 
3175
    _fmt = ('Branch "%(branch_url)s" appears to be bound to itself. '
 
3176
        'Please use `bzr unbind` to fix.')
 
3177
 
 
3178
    def __init__(self, branch_url):
 
3179
        self.branch_url = branch_url
 
3180