Exception: ConcurrentStreamProcessFailed
- Inherits:
-
ProcessFailed
- Object
- StandardError
- ProcessFailed
- ConcurrentStreamProcessFailed
- Defined in:
- lib/rbbt/util/misc/exceptions.rb
Instance Attribute Summary collapse
-
#concurrent_stream ⇒ Object
Returns the value of attribute concurrent_stream.
Attributes inherited from ProcessFailed
Instance Method Summary collapse
-
#initialize(pid = Process.pid, msg = nil, concurrent_stream = nil) ⇒ ConcurrentStreamProcessFailed
constructor
A new instance of ConcurrentStreamProcessFailed.
Constructor Details
#initialize(pid = Process.pid, msg = nil, concurrent_stream = nil) ⇒ ConcurrentStreamProcessFailed
Returns a new instance of ConcurrentStreamProcessFailed.
43 44 45 46 |
# File 'lib/rbbt/util/misc/exceptions.rb', line 43 def initialize(pid = Process.pid, msg = nil, concurrent_stream = nil) super(pid, msg) @concurrent_stream = concurrent_stream end |
Instance Attribute Details
#concurrent_stream ⇒ Object
Returns the value of attribute concurrent_stream.
42 43 44 |
# File 'lib/rbbt/util/misc/exceptions.rb', line 42 def concurrent_stream @concurrent_stream end |