@eagleeye-solutions/integration-events-common
Version:
Eagle Eye CDP connector common functionality
18 lines • 617 B
JavaScript
;
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