type = \get_class($exception); $this->parent = $exception instanceof \Error ? self::PARENT_ERROR : self::PARENT_EXCEPTION; $this->message = $exception->getMessage(); $this->code = $exception->getCode(); $this->trace = Sync\flattenThrowableBacktrace($exception); if ($previous = $exception->getPrevious()) { $this->previous = new self($id, $previous); } } public function promise(): Promise { return new Failure($this->createException()); } private function createException(): \Throwable { $previous = $this->previous ? $this->previous->createException() : null; $format = 'Uncaught %s in worker with message "%s" and code "%s"; use %s::getWorkerTrace() ' . 'for the stack trace in the worker'; if ($this->parent === self::PARENT_ERROR) { return new TaskError( $this->type, \sprintf($format, $this->type, $this->message, $this->code, TaskError::class), \implode("\n", $this->trace), $previous ); } return new TaskException( $this->type, \sprintf($format, $this->type, $this->message, $this->code, TaskException::class), \implode("\n", $this->trace), $previous ); } }