/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: Aaron Bentley
  • Date: 2006-08-18 20:53:05 UTC
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: abentley@panoramicfeedback.com-20060818205305-2df0367482c62222
Fail when trying to use interrepository on Knit2 and Knit1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1110
1110
 
1111
1111
    def __init__(self):
1112
1112
        BzrNewError.__init__(self)    
 
1113
 
 
1114
 
 
1115
class NoInterWorker(BzrNewError):
 
1116
    """No interworker compatible with %(source)s and %(target)s was found."""
 
1117
 
 
1118
    def __init__(self, source, target):
 
1119
        self.source = source
 
1120
        self.target = target
 
1121
        BzrNewError.__init__(self)