Exception: Async::Task::FinishedError

Inherits:
RuntimeError
  • Object
show all
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

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(message = "Cannot create child task within a task that has finished execution!")
	super
end