~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Bring in both branch-builder threads.

Show diffs side-by-side

added added

removed removed

Lines of Context:
584
584
        self.key = key
585
585
 
586
586
 
587
 
class UnknownBuildAction(BzrError):
588
 
    """Raised when a BranchBuilder gets an action it doesn't know"""
589
 
 
590
 
    _fmt = "Unknown build action: %(action)s"
591
 
 
592
 
    def __init__(self, action):
593
 
        BzrError.__init__(self)
594
 
        self.action = action
595
 
 
596
 
 
597
587
class UnknownHook(BzrError):
598
588
 
599
589
    _fmt = "The %(type)s hook '%(hook)s' is unknown in this version of bzrlib."