UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

11 lines 430 B
/* Custom modules */ import { BadGatewayError } from "./BadGatewayError"; import { ErrorCode } from "./ErrorCode"; export class SMTPConnectError extends BadGatewayError { constructor(message, stack, meta, details, logLevel) { super(message, stack, meta, details, logLevel); this.name = "SMTP Connect Error"; this.code = ErrorCode.SMTP_CONNECT_ERROR; } } //# sourceMappingURL=smtpConnectError.js.map