Documentation

ActivityFailure extends TemporalFailure
in package

Represents failures that can cross workflow and activity boundaries.

Only exceptions that extend this class will be propagated to the caller.

Never extend this class or any of its derivatives. They are to be used by the SDK code only. Throw an instance [](ApplicationFailure) to pass application specific errors between workflows and activities.

Any unhandled exception thrown by an activity or workflow will be converted to an instance of [](ApplicationFailure).

Table of Contents

Properties

$activityId  : string
$activityType  : string
$failure  : Failure|null
$identity  : string
$originalMessage  : string
$originalStackTrace  : string|null
$retryState  : int
$scheduledEventId  : int
$startedEventId  : int

Methods

__construct()  : mixed
__toString()  : string
getActivityId()  : string
getActivityType()  : string
getFailure()  : Failure|null
getIdentity()  : string
getOriginalMessage()  : string
getOriginalStackTrace()  : string|null
getRetryState()  : int
getScheduledEventId()  : int
getStartedEventId()  : int
hasOriginalStackTrace()  : bool
setDataConverter()  : void
setFailure()  : void
setOriginalStackTrace()  : void
buildMessage()  : string
Explain known types of key=>value pairs.

Properties

Methods

__construct()

public __construct(int $scheduledEventId, int $startedEventId, string $activityType, string $activityId, int $retryState, string $identity[, Throwable|null $previous = null ]) : mixed
Parameters
$scheduledEventId : int
$startedEventId : int
$activityType : string
$activityId : string
$retryState : int
$identity : string
$previous : Throwable|null = null

getActivityId()

public getActivityId() : string
Return values
string

getActivityType()

public getActivityType() : string
Return values
string

getFailure()

public getFailure() : Failure|null
Return values
Failure|null

getOriginalMessage()

public getOriginalMessage() : string
Return values
string

getOriginalStackTrace()

public getOriginalStackTrace() : string|null
Return values
string|null

getScheduledEventId()

public getScheduledEventId() : int
Return values
int

getStartedEventId()

public getStartedEventId() : int
Return values
int

hasOriginalStackTrace()

public hasOriginalStackTrace() : bool
Return values
bool

setFailure()

public setFailure(Failure|null $failure) : void
Parameters
$failure : Failure|null

setOriginalStackTrace()

public setOriginalStackTrace(string $stackTrace) : void
Parameters
$stackTrace : string

buildMessage()

Explain known types of key=>value pairs.

protected static buildMessage(array<string|int, mixed> $values) : string
Parameters
$values : array<string|int, mixed>
Return values
string

        
On this page

Search results