class GLI::MissingRequiredArgumentsException
Attributes
command_in_context[R]
The command for which the argument was unknown
Public Class Methods
new(message,command)
click to toggle source
message
-
the error message to show the user
command
-
the command we were using to parse command-specific options
Calls superclass method
# File lib/gli/exceptions.rb, line 67 def initialize(message,command) super(message) @command_in_context = command end