~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2006-03-22 22:18:19 UTC
  • Revision ID: abentley@panoramicfeedback.com-20060322221819-0e627e73d1232926
Added zap command

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
class PatchFailed(Exception):
28
28
    """Failed applying patch!"""
 
29
 
 
30
class NotCheckout(CommandError):
 
31
    """Specified path is not a checkout."""
 
32
 
 
33
class UncommittedCheckout(CommandError):
 
34
    """This checkout contains uncommitted changes"""