Interface: CloudProviderOperationErrorOptions
Defined in: electron/services/cloud/providers/cloudProviderErrors.ts:22
Options for CloudProviderOperationError.
Hierarchy
Extends
ErrorOptions
Properties
code?
readonly optional code?: string;
Defined in: electron/services/cloud/providers/cloudProviderErrors.ts:28
Optional Node-style error code to preserve errno semantics.
Example
(ENOENT, "EEXIST");
operation
readonly operation: CloudProviderOperation;
Defined in: electron/services/cloud/providers/cloudProviderErrors.ts:31
Logical operation that failed.
providerKind
readonly providerKind: CloudProviderKind;
Defined in: electron/services/cloud/providers/cloudProviderErrors.ts:34
Provider implementation that produced this failure.
target?
readonly optional target?: string;
Defined in: electron/services/cloud/providers/cloudProviderErrors.ts:42
Optional identifier involved in the operation.
Remarks
Typically an object key, backup fileName, or a prefix.