Exception: NameError
- Inherits:
-
StandardError
- Object
- Exception
- 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.
Methods inherited from Exception
#backtrace, #exception, #inspect, #message, #set_backtrace, #to_s
Constructor Details
#initialize(message = nil, name = nil) ⇒ NameError
Returns a new instance of NameError
28 29 30 31 |
# File 'mrblib/10error.rb', line 28 def initialize(message=nil, name=nil) @name = name super(message) end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name
26 27 28 |
# File 'mrblib/10error.rb', line 26 def name @name end |