puppeteer-extra-plugin-session
Version:
A puppeteer plugin to dump and inject session data.
11 lines • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CorruptedSessionDataError = void 0;
class CorruptedSessionDataError extends Error {
constructor(zodError) {
super(`Session data couldn't be parsed. See the embedded ZodError for additional informations.`);
this.zodError = zodError;
}
}
exports.CorruptedSessionDataError = CorruptedSessionDataError;
//# sourceMappingURL=exceptions.js.map