Exception: Toys::ArgParsingError

Inherits:
StandardError
  • Object
show all
Defined in:
core-docs/toys/errors.rb

Overview

An exception indicating problems parsing arguments. These are generally handled internally by triggering usage error handlers.

Defined in the toys-core gem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(errors) ⇒ ArgParsingError

Create an ArgParsingError given a set of error messages

Parameters:



53
54
55
# File 'core-docs/toys/errors.rb', line 53

def initialize(errors)
  # Source available in the toys-core gem
end

Instance Attribute Details

#usage_errorsArray<Toys::ArgParser::UsageError> (readonly)

The individual usage error messages.

Returns:



61
62
63
# File 'core-docs/toys/errors.rb', line 61

def usage_errors
  @usage_errors
end