UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

15 lines 635 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BrowserStateNotFoundException = void 0; const DonobuException_1 = require("./DonobuException"); /** * This exception is thrown if browser state is attempted to be loaded for a * flow but there is no browser state found. */ class BrowserStateNotFoundException extends DonobuException_1.DonobuException { constructor(flowId) { super(`Browser state for flow ${flowId} was not found!`, undefined, 404); } } exports.BrowserStateNotFoundException = BrowserStateNotFoundException; //# sourceMappingURL=BrowserStateNotFoundException.js.map