~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2007-06-27 16:11:12 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070627161112-t1r8d32qifq7ox07
Implement patch verification

Show diffs side-by-side

added added

removed removed

Lines of Context:
2053
2053
        self.start = start
2054
2054
 
2055
2055
 
 
2056
class PatchVerificationFailed(BzrError):
 
2057
    """A patch from a merge directive could not be verified"""
 
2058
 
 
2059
    _fmt = "Patch verification failed."
 
2060
 
 
2061
 
2056
2062
class PatchMissing(BzrError):
2057
2063
    """Raise a patch type was specified but no patch supplied"""
2058
2064