Exception: Rubinius::Actor::DeadActorError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Rubinius::Actor::DeadActorError
- Defined in:
- lib/rubinius/actor.rb
Instance Attribute Summary collapse
-
#actor ⇒ Object
readonly
Returns the value of attribute actor.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize(actor, reason) ⇒ DeadActorError
constructor
A new instance of DeadActorError.
Constructor Details
#initialize(actor, reason) ⇒ DeadActorError
Returns a new instance of DeadActorError.
39 40 41 42 43 |
# File 'lib/rubinius/actor.rb', line 39 def initialize(actor, reason) super(reason) @actor = actor @reason = reason end |
Instance Attribute Details
#actor ⇒ Object (readonly)
Returns the value of attribute actor.
37 38 39 |
# File 'lib/rubinius/actor.rb', line 37 def actor @actor end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason.
38 39 40 |
# File 'lib/rubinius/actor.rb', line 38 def reason @reason end |