ZeroTransferErrorDetails
Defined in: src/errors/ZeroTransferError.ts:15
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:21 |
code | string | Stable machine-readable error code. | src/errors/ZeroTransferError.ts:17 |
command? | string | Protocol command associated with the failure, if any. | src/errors/ZeroTransferError.ts:27 |
details? | Record<string, unknown> | Additional structured details for diagnostics. | src/errors/ZeroTransferError.ts:37 |
ftpCode? | number | FTP response code associated with the failure. | src/errors/ZeroTransferError.ts:29 |
host? | string | Remote host associated with the failing operation. | src/errors/ZeroTransferError.ts:25 |
message | string | Human-readable error message safe to show in logs or diagnostics. | src/errors/ZeroTransferError.ts:19 |
path? | string | Remote path associated with the failure. | src/errors/ZeroTransferError.ts:33 |
protocol? | "ftp" | "ftps" | "sftp" | Protocol active when the error occurred. | src/errors/ZeroTransferError.ts:23 |
retryable | boolean | Whether retry policy may safely retry this failure. | src/errors/ZeroTransferError.ts:35 |
sftpCode? | number | SFTP status code associated with the failure. | src/errors/ZeroTransferError.ts:31 |