Exception: Laminar::ParticleStopped
- Inherits:
-
StandardError
- Object
- StandardError
- Laminar::ParticleStopped
- Defined in:
- lib/laminar/particle_stopped.rb
Overview
Raised when someone calls fail!() on a Laminar::Context.
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Instance Method Summary collapse
-
#initialize(context = nil) ⇒ ParticleStopped
constructor
A new instance of ParticleStopped.
Constructor Details
#initialize(context = nil) ⇒ ParticleStopped
Returns a new instance of ParticleStopped.
8 9 10 11 |
# File 'lib/laminar/particle_stopped.rb', line 8 def initialize(context = nil) @context = context super end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
6 7 8 |
# File 'lib/laminar/particle_stopped.rb', line 6 def context @context end |