UNPKG

donobu

Version:

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

12 lines 459 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnknownToolException = void 0; const DonobuException_1 = require("./DonobuException"); class UnknownToolException extends DonobuException_1.DonobuException { constructor(toolName) { super(`Unknown tool '${toolName}'`); this.toolName = toolName; } } exports.UnknownToolException = UnknownToolException; //# sourceMappingURL=UnknownToolException.js.map