~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-08-17 19:51:54 UTC
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: abentley@panoramicfeedback.com-20060817195154-af960bfc59351ebf
Implement knit repo format 2

Show diffs side-by-side

added added

removed removed

Lines of Context:
946
946
        self.format = format
947
947
 
948
948
 
 
949
class BadConversionTarget(BzrNewError):
 
950
    """Cannot convert to format %(format)s.  %(problem)s"""
 
951
 
 
952
    def __init__(self, problem, format):
 
953
        BzrNewError.__init__(self)
 
954
        self.problem = problem
 
955
        self.format = format
 
956
 
 
957
 
949
958
class NoDiff(BzrNewError):
950
959
    """Diff is not installed on this machine: %(msg)s"""
951
960