class Slop::UnknownOption

Raised when an unknown option is parsed. Suppress with the `suppress_errors` config option.

Attributes

flag[R]

Public Class Methods

new(msg, flag) click to toggle source
Calls superclass method
# File lib/slop/error.rb, line 30
def initialize(msg, flag)
  super(msg)
  @flag = flag
end