@cognigy/rest-api-client
Version:
Cognigy REST-Client
15 lines • 616 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SMTPConnectError = void 0;
/* Custom modules */
const BadGatewayError_1 = require("./BadGatewayError");
const ErrorCode_1 = require("./ErrorCode");
class SMTPConnectError extends BadGatewayError_1.BadGatewayError {
constructor(message, stack, meta, details, logLevel) {
super(message, stack, meta, details, logLevel);
this.name = "SMTP Connect Error";
this.code = ErrorCode_1.ErrorCode.SMTP_CONNECT_ERROR;
}
}
exports.SMTPConnectError = SMTPConnectError;
//# sourceMappingURL=smtpConnectError.js.map