Exception: Async::Task::FinishedError
- Inherits:
- 
      RuntimeError
      
        - Object
- RuntimeError
- Async::Task::FinishedError
 
- Defined in:
- lib/async/task.rb
Overview
Raised when a child task is created within a task that has finished execution.
Instance Method Summary collapse
- 
  
    
      #initialize(message = "Cannot create child task within a task that has finished execution!")  ⇒ FinishedError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Create a new finished error. 
Constructor Details
#initialize(message = "Cannot create child task within a task that has finished execution!") ⇒ FinishedError
Create a new finished error.
| 60 61 62 | # File 'lib/async/task.rb', line 60 def initialize( = "Cannot create child task within a task that has finished execution!") super end |