class OptionParser::ParseError
Base class of exceptions from OptionParser.
Constants
- Reason
 Reasonwhich caused the error.
Attributes
          args[R]
        
        
          reason[W]
        
        Public Class Methods
          filter_backtrace(array)
          
          click to toggle source
          
        
        
        # File lib/optparse.rb, line 2003 def self.filter_backtrace(array) unless $DEBUG array.delete_if(&%r"\A#{Regexp.quote(__FILE__)}:"o.method(:=~)) end array end
          new(*args)
          
          click to toggle source
          
        
        
        # File lib/optparse.rb, line 1987 def initialize(*args) @args = args @reason = nil end
Public Instance Methods
          inspect()
          
          click to toggle source
          
        
        
        # File lib/optparse.rb, line 2030 def inspect "#<#{self.class}: #{args.join(' ')}>" end
          message()
          
          click to toggle source
          
        
        
        Default stringizing method to emit standard error message.
# File lib/optparse.rb, line 2037 def message reason + ': ' + args.join(' ') end
          Also aliased as: to_s
        
        
        
      
          reason()
          
          click to toggle source
          
        
        
        Returns error reason. Override this for I18N.
# File lib/optparse.rb, line 2026 def reason @reason || self.class::Reason end
          recover(argv)
          
          click to toggle source
          
        
        
        Pushes back erred argument(s) to argv.
# File lib/optparse.rb, line 1998 def recover(argv) argv[0, 0] = @args argv end
          set_backtrace(array)
          
          click to toggle source
          
        
        
        
              Calls superclass method
              
          
          
          Exception#set_backtrace
            # File lib/optparse.rb, line 2010 def set_backtrace(array) super(self.class.filter_backtrace(array)) end
          set_option(opt, eq)
          
          click to toggle source
          
        
        
        # File lib/optparse.rb, line 2014 def set_option(opt, eq) if eq @args[0] = opt else @args.unshift(opt) end self end