A condition (message, warning, or error) that occurred while evaluation a future
FutureEvaluationCondition(message, call = NULL, future = NULL,
output = NULL)FutureEvaluationMessage(message, call = NULL, future = NULL,
output = NULL)
FutureEvaluationWarning(message, call = NULL, future = NULL,
output = NULL)
FutureEvaluationError(message, call = NULL, future = NULL, output = NULL)
A message.
The call stack that led up to the condition.
The Future involved.
Output captured when condition occurred.
An object of class FutureEvaluationCondition which inherits from class condition and FutureEvaluationMessage, FutureEvaluationWarning, and FutureEvaluationError all inherits from FutureEvaluationCondition. Moreover, a FutureEvaluationError inherits from error, a FutureEvaluationWarning from warning, and a FutureEvaluationMessage from message.