class Toys::ArgParsingError


An exception indicating problems parsing arguments.
#

def initialize(errors)

Parameters:
  • errors (Array) --
def initialize(errors)
  @usage_errors = errors
  super(errors.join("\n"))
end