Exception: OptionParser::ParseError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/optparse.rb

Overview

Base class of exceptions from OptionParser.

Constant Summary collapse

Reason =

Reason which caused the error.

'parse error'.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ ParseError

Returns a new instance of ParseError.



1597
1598
1599
1600
# File 'lib/optparse.rb', line 1597

def initialize(*args)
  @args = args
  @reason = nil
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args



1602
1603
1604
# File 'lib/optparse.rb', line 1602

def args
  @args
end

#reasonObject

Returns error reason. Override this for I18N.



1625
1626
1627
# File 'lib/optparse.rb', line 1625

def reason
  @reason || self.class::Reason
end

Instance Method Details

#inspectObject



1629
1630
1631
# File 'lib/optparse.rb', line 1629

def inspect
  "#<#{self.class.to_s}: #{args.join(' ')}>"
end

#messageObject Also known as: to_s

Default stringizing method to emit standard error message.



1636
1637
1638
# File 'lib/optparse.rb', line 1636

def message
  reason + ': ' + args.join(' ')
end

#recover(argv) ⇒ Object

Pushes back erred argument(s) to argv.



1608
1609
1610
1611
# File 'lib/optparse.rb', line 1608

def recover(argv)
  argv[0, 0] = @args
  argv
end

#set_option(opt, eq) ⇒ Object



1613
1614
1615
1616
1617
1618
1619
1620
# File 'lib/optparse.rb', line 1613

def set_option(opt, eq)
  if eq
    @args[0] = opt
  else
    @args.unshift(opt)
  end
  self
end