UNPKG

@eagleeye-solutions/integration-events-common

Version:
18 lines 617 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PermanentDeliveryFailure = exports.TemporaryDeliveryFailure = exports.EeApiException = void 0; class EeApiException extends Error { type; constructor(type, message) { super(message); this.type = type; } } exports.EeApiException = EeApiException; class TemporaryDeliveryFailure extends Error { } exports.TemporaryDeliveryFailure = TemporaryDeliveryFailure; class PermanentDeliveryFailure extends Error { } exports.PermanentDeliveryFailure = PermanentDeliveryFailure; //# sourceMappingURL=exceptions.js.map