Exception: InvalidParametersException
- Inherits:
-
Exception
- Object
- Exception
- InvalidParametersException
- Defined in:
- lib/mkit/client/command_parser.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
Returns the value of attribute command.
Instance Method Summary collapse
-
#initialize(cause, command = nil) ⇒ InvalidParametersException
constructor
A new instance of InvalidParametersException.
Constructor Details
#initialize(cause, command = nil) ⇒ InvalidParametersException
Returns a new instance of InvalidParametersException.
10 11 12 13 |
# File 'lib/mkit/client/command_parser.rb', line 10 def initialize(cause, command = nil) super(cause) @command = command end |
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command.
8 9 10 |
# File 'lib/mkit/client/command_parser.rb', line 8 def command @command end |