~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2008-11-12 03:00:42 UTC
  • Revision ID: aaron@aaronbentley.com-20081112030042-sqhfrqyf32w4ym09
More shelf test fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
class ChangedBinaryFiles(BzrError):
75
75
 
76
76
    _fmt = 'Changes involve binary files.'
77
 
 
78
 
 
79
 
class NoConflictFiles(CommandError):
80
 
 
81
 
    _fmt = '%(base_name)s does not exist and there are no pending merges.'
82
 
 
83
 
    def __init__(self, base_name):
84
 
        CommandError.__init__(self, base_name=base_name)