AsyncSourceAsyncTaskFinishedError

class FinishedError

Raised when a child task is created within a task that has finished execution.

Definitions

def initialize(message = "Cannot create child task within a task that has finished execution!")

Create a new finished error.

Signature

parameter message String

The error message.

Implementation

def initialize(message = "Cannot create child task within a task that has finished execution!")
	super
end

Discussion