Exception: NameError
- Inherits:
- 
      StandardError
      
        - Object
- Exception
- StandardError
- NameError
 
- Defined in:
- opal/opal/corelib/error.rb,
 opal/opal/corelib/error.rb
Direct Known Subclasses
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute name. 
Instance Method Summary collapse
- 
  
    
      #initialize(message, name = nil)  ⇒ NameError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NameError. 
Methods inherited from Exception
#backtrace, #backtrace_locations, #cause, #copy_instance_variables, exception, #exception, #full_message, #inspect, #message, new, #set_backtrace, #to_s
Constructor Details
#initialize(message, name = nil) ⇒ NameError
Returns a new instance of NameError.
| 284 285 286 287 | # File 'opal/opal/corelib/error.rb', line 284 def initialize(, name = nil) super @name = name end | 
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
| 282 283 284 | # File 'opal/opal/corelib/error.rb', line 282 def name @name end |