Exception: NoMethodError
- Defined in:
- opal/opal/corelib/error.rb,
 opal/opal/corelib/error.rb
Instance Attribute Summary collapse
- 
  
    
      #args  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute args. 
Attributes inherited from NameError
Instance Method Summary collapse
- 
  
    
      #initialize(message, name = nil, args = [])  ⇒ NoMethodError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NoMethodError. 
Methods inherited from Exception
#backtrace, exception, #exception, #inspect, #message, new, #to_s
Constructor Details
#initialize(message, name = nil, args = []) ⇒ NoMethodError
Returns a new instance of NoMethodError
| 137 138 139 140 | # File 'opal/opal/corelib/error.rb', line 137 def initialize(, name=nil, args=[]) super , name @args = args end | 
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args
| 135 136 137 | # File 'opal/opal/corelib/error.rb', line 135 def args @args end |