ZeroTransferErrorDetails
Defined in: src/errors/ZeroTransferError.ts:16
Complete set of fields required to create a ZeroTransfer error.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
cause? | unknown | Original error or exception that caused this error. | src/errors/ZeroTransferError.ts:22 |
code | string | Stable machine-readable error code. | src/errors/ZeroTransferError.ts:18 |
command? | string | Protocol command associated with the failure, if any. | src/errors/ZeroTransferError.ts:28 |
details? | Record<string, unknown> | Additional structured details for diagnostics. | src/errors/ZeroTransferError.ts:38 |
ftpCode? | number | FTP response code associated with the failure. | src/errors/ZeroTransferError.ts:30 |
host? | string | Remote host associated with the failing operation. | src/errors/ZeroTransferError.ts:26 |
message | string | Human-readable error message safe to show in logs or diagnostics. | src/errors/ZeroTransferError.ts:20 |
path? | string | Remote path associated with the failure. | src/errors/ZeroTransferError.ts:34 |
protocol? | "ftp" | "ftps" | "sftp" | Protocol active when the error occurred. | src/errors/ZeroTransferError.ts:24 |
retryable | boolean | Whether retry policy may safely retry this failure. | src/errors/ZeroTransferError.ts:36 |
sftpCode? | number | SFTP status code associated with the failure. | src/errors/ZeroTransferError.ts:32 |