@lelantos-org/sdk / core/errors / ProverArtifactsFailedError
Class: ProverArtifactsFailedError โ
Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:125
Artifacts were located but could not be loaded (I/O, HTTP, timeout).
Extends โ
WalletError<"PROVER_ARTIFACTS_FAILED">
Constructors โ
Constructor โ
new ProverArtifactsFailedError(
source,
message,
opts?
): ProverArtifactsFailedError;Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:129
Parameters โ
| Parameter | Type |
|---|---|
source | string |
message | string |
opts? | WalletErrorOptions & object |
Returns โ
ProverArtifactsFailedError
Overrides โ
Properties โ
cause? โ
optional cause?: unknown;Defined in: typescript/lib/lib.es2022.error.d.ts:26
Inherited from โ
code โ
readonly code: "PROVER_ARTIFACTS_FAILED";Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:42
Inherited from โ
context โ
readonly context: ErrorContext;Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:43
Inherited from โ
message โ
message: string;Defined in: typescript/lib/lib.es5.d.ts:1077
Inherited from โ
name โ
name: string;Defined in: typescript/lib/lib.es5.d.ts:1076
Inherited from โ
retryable โ
readonly retryable: boolean;Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:128
False for 4xx and other failures that will not fix themselves.
source โ
readonly source: string;Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:126
stack? โ
optional stack?: string;Defined in: typescript/lib/lib.es5.d.ts:1078
Inherited from โ
Methods โ
withContext() โ
withContext(extra): this;Defined in: @lelantos-org/sdk/dist/core/errors.d.ts:46
Merge additional context in place and return this for rethrowing.
Parameters โ
| Parameter | Type |
|---|---|
extra | ErrorContext |
Returns โ
this