Base class of exceptions from OptionParser.

Methods
F
I
M
N
R
S
T
Constants
Reason = 'parse error'.freeze
 

Reason which caused the error.

Attributes
[R] args
[W] reason
Class Public methods
filter_backtrace(array)
# File lib/optparse.rb, line 1776
def self.filter_backtrace(array)
  unless $DEBUG
    array.delete_if(&%r\A#{Regexp.quote(__FILE__)}:"o.method(:=~))
  end
  array
end
new(*args)
# File lib/optparse.rb, line 1760
def initialize(*args)
  @args = args
  @reason = nil
end
Instance Public methods
inspect()
# File lib/optparse.rb, line 1803
def inspect
  "#<#{self.class.to_s}: #{args.join(' ')}>"
end
message()

Default stringizing method to emit standard error message.

Also aliased as: to_s
# File lib/optparse.rb, line 1810
def message
  reason + ': ' + args.join(' ')
end
reason()

Returns error reason. Override this for I18N.

# File lib/optparse.rb, line 1799
def reason
  @reason || self.class::Reason
end
recover(argv)

Pushes back erred argument(s) to argv.

# File lib/optparse.rb, line 1771
def recover(argv)
  argv[0, 0] = @args
  argv
end
set_backtrace(array)
# File lib/optparse.rb, line 1783
def set_backtrace(array)
  super(self.class.filter_backtrace(array))
end
set_option(opt, eq)
# File lib/optparse.rb, line 1787
def set_option(opt, eq)
  if eq
    @args[0] = opt
  else
    @args.unshift(opt)
  end
  self
end
to_s()
Alias for: message