equal
deleted
inserted
replaced
48 pass |
48 pass |
49 |
49 |
50 class CommandError(Exception): |
50 class CommandError(Exception): |
51 """Exception raised on errors in parsing the command line.""" |
51 """Exception raised on errors in parsing the command line.""" |
52 |
52 |
53 class InterventionRequired(Exception): |
53 class InterventionRequired(HintException): |
54 """Exception raised when a command requires human intervention.""" |
54 """Exception raised when a command requires human intervention.""" |
55 |
55 |
56 class Abort(HintException): |
56 class Abort(HintException): |
57 """Raised if a command needs to print an error and exit.""" |
57 """Raised if a command needs to print an error and exit.""" |
58 |
58 |