Exception: NameError
- Inherits:
-
StandardError
- Object
- StandardError
- NameError
- Defined in:
- mrblib/10error.rb
Overview
ISO 15.2.31
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(message = nil, name = nil) ⇒ NameError
constructor
A new instance of NameError.
Constructor Details
#initialize(message = nil, name = nil) ⇒ NameError
Returns a new instance of NameError.
45 46 47 48 |
# File 'mrblib/10error.rb', line 45 def initialize(message=nil, name=nil) @name = name super(message) end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
43 44 45 |
# File 'mrblib/10error.rb', line 43 def name @name end |