Class: ActivityFailure
common.ActivityFailure
Contains information about an Activity failure. Always contains the original reason for the failure as its cause
.
For example, if an Activity timed out, the cause will be a TimeoutFailure.
This exception is expected to be thrown only by the framework code.
Hierarchy
-
↳
ActivityFailure
Constructors
constructor
• new ActivityFailure(message
, activityType
, activityId
, retryState
, identity
, cause?
): ActivityFailure
Parameters
Name | Type |
---|---|
message | undefined | string |
activityType | string |
activityId | undefined | string |
retryState | RetryState |
identity | undefined | string |
cause? | Error |
Returns
Overrides
Properties
activityId
• Readonly
activityId: undefined
| string
activityType
• Readonly
activityType: string
cause
• Optional
Readonly
cause: Error
Inherited from
failure
• Optional
failure: IFailure
The original failure that constructed this error.
Only present if this error was generated from an external operation.
Inherited from
identity
• Readonly
identity: undefined
| string
message
• message: string
Inherited from
name
• name: string
Inherited from
retryState
• Readonly
retryState: RetryState
stack
• Optional
stack: string
Inherited from
prepareStackTrace
▪ Static
Optional
prepareStackTrace: (err
: Error
, stackTraces
: CallSite
[]) => any
Optional override for formatting stack traces
See
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Type declaration
▸ (err
, stackTraces
): any
Optional override for formatting stack traces
Parameters
Name | Type |
---|---|
err | Error |
stackTraces | CallSite [] |
Returns
any
See
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Inherited from
TemporalFailure.prepareStackTrace
stackTraceLimit
▪ Static
stackTraceLimit: number
Inherited from
TemporalFailure.stackTraceLimit
Methods
captureStackTrace
▸ captureStackTrace(targetObject
, constructorOpt?
): void
Create .stack property on a target object
Parameters
Name | Type |
---|---|
targetObject | object |
constructorOpt? | Function |
Returns
void