Class: Ethon::Easy::DebugInfo::Message Private
- Inherits:
-
Object
- Object
- Ethon::Easy::DebugInfo::Message
- Defined in:
- lib/ethon/easy/debug_info.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #message ⇒ Object readonly private
- #type ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(type, message) ⇒ Message
constructor
private
A new instance of Message.
Constructor Details
#initialize(type, message) ⇒ Message
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Message.
16 17 18 19 |
# File 'lib/ethon/easy/debug_info.rb', line 16 def initialize(type, ) @type = type @message = end |
Instance Attribute Details
#message ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 |
# File 'lib/ethon/easy/debug_info.rb', line 14 def @message end |
#type ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 |
# File 'lib/ethon/easy/debug_info.rb', line 14 def type @type end |