##// END OF EJS Templates
error: introduce new InterventionRequired exception...
Augie Fackler -
r18931:3c224e09 default
parent child Browse files
Show More
@@ -33,6 +33,9 b' class ManifestLookupError(LookupError):'
33 class CommandError(Exception):
33 class CommandError(Exception):
34 """Exception raised on errors in parsing the command line."""
34 """Exception raised on errors in parsing the command line."""
35
35
36 class InterventionRequired(Exception):
37 """Exception raised when a command requires human intervention."""
38
36 class Abort(Exception):
39 class Abort(Exception):
37 """Raised if a command needs to print an error and exit."""
40 """Raised if a command needs to print an error and exit."""
38 def __init__(self, *args, **kw):
41 def __init__(self, *args, **kw):
General Comments 0
You need to be logged in to leave comments. Login now