@amplience/dc-cli
Version:
Dynamic Content CLI Tool
13 lines (12 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpError = void 0;
class HttpError extends Error {
constructor(message, request, response) {
super(message);
this.request = request;
this.response = response;
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.HttpError = HttpError;