~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Merge from integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
... except:
35
35
...   print sys.exc_type
36
36
...   print sys.exc_value
37
 
...   print sys.exc_value.path
 
37
...   path = getattr(sys.exc_value, 'path')
 
38
...   if path is not None:
 
39
...     print path
38
40
bzrlib.errors.NotBranchError
39
41
Not a branch: /foo/bar
40
42
/foo/bar
370
372
    """Parents are mismatched between two revisions."""
371
373
    
372
374
 
 
375
class WeaveInvalidChecksum(WeaveError):
 
376
    """Text did not match it's checksum: %(message)s"""
 
377
 
 
378
 
373
379
class NoSuchExportFormat(BzrNewError):
374
380
    """Export format %(format)r not supported"""
375
381
    def __init__(self, format):
442
448
        BzrNewError.__init__(self)
443
449
        self.graph = graph
444
450
 
 
451
 
445
452
class NotConflicted(BzrNewError):
446
453
    """File %(filename)s is not conflicted."""
 
454
 
447
455
    def __init__(self, filename):
448
456
        BzrNewError.__init__(self)
449
457
        self.filename = filename
450
458
 
 
459
 
451
460
class MustUseDecorated(Exception):
452
461
    """A decorating function has requested its original command be used.
453
462
    
456
465
 
457
466
class MissingText(BzrNewError):
458
467
    """Branch %(base)s is missing revision %(text_revision)s of %(file_id)s"""
 
468
 
459
469
    def __init__(self, branch, text_revision, file_id):
 
470
        BzrNewError.__init__(self)
460
471
        self.branch = branch
461
472
        self.base = branch.base
462
473
        self.text_revision = text_revision
463
474
        self.file_id = file_id
 
475
 
 
476
 
 
477
class BzrBadParameter(BzrNewError):
 
478
    """Parameter %(param)s is neither unicode nor utf8."""
 
479
    
 
480
    def __init__(self, param):
 
481
        BzrNewError.__init__(self)
 
482
        self.param = param