Revision 8694bdad kamaki/cli/errors.py

b/kamaki/cli/errors.py
97 97
        super(CLISyntaxError, self).__init__(message, details, importance)
98 98

  
99 99

  
100
class CLIInvalidArgument(CLISyntaxError):
101
    def __init__(self, message='Invalid Argument', details=[], importance=1):
102
        super(CLIInvalidArgument, self).__init__(message, details, importance)
103

  
104

  
100 105
class CLIUnknownCommand(CLIError):
101 106
    def __init__(self, message='Unknown Command', details=[], importance=1):
102 107
        super(CLIUnknownCommand, self).__init__(message, details, importance)

Also available in: Unified diff