RuntimeError
Base class of exceptions from OptionParser.
# File optparse.rb, line 1772 def inspect "#<#{self.class.to_s}: #{args.join(' ')}>" end
Default stringizing method to emit standard error message.
# File optparse.rb, line 1779 def message reason + ': ' + args.join(' ') end
Returns error reason. Override this for I18N.
# File optparse.rb, line 1768 def reason @reason || self.class::Reason end
Pushes back erred argument(s) to argv
.
# File optparse.rb, line 1740 def recover(argv) argv[0, 0] = @args argv end
# File optparse.rb, line 1752 def set_backtrace(array) super(self.class.filter_backtrace(array)) end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.