FtpReplyErrorInput
Defined in: src/errors/errorFactory.ts:25
Input used to map an FTP reply into a structured ZeroTransfer error.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
cause? | unknown | Original lower-level failure that accompanied the reply. | src/errors/errorFactory.ts:37 |
command? | string | FTP command that produced the response, if known. | src/errors/errorFactory.ts:31 |
ftpCode | number | Numeric FTP response code returned by the server. | src/errors/errorFactory.ts:27 |
message | string | Server-provided response message. | src/errors/errorFactory.ts:29 |
path? | string | Remote path involved in the command, if any. | src/errors/errorFactory.ts:33 |
protocol? | "ftp" | "ftps" | "sftp" | Protocol variant used by the adapter. | src/errors/errorFactory.ts:35 |