@crawlee/core
Version:
The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.
20 lines • 630 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CookieParseError = void 0;
/**
* @ignore
*/
class CookieParseError extends Error {
constructor(cookieHeaderString) {
super(`Could not parse cookie header string: ${cookieHeaderString}`);
Object.defineProperty(this, "cookieHeaderString", {
enumerable: true,
configurable: true,
writable: true,
value: cookieHeaderString
});
Error.captureStackTrace(this, CookieParseError);
}
}
exports.CookieParseError = CookieParseError;
//# sourceMappingURL=errors.js.map