donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
13 lines • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ToolCallNotFoundException = void 0;
const DonobuException_1 = require("./DonobuException");
/** This exception is thrown when a particular tool call is not found. */
class ToolCallNotFoundException extends DonobuException_1.DonobuException {
constructor(toolCallId) {
super(`Tool call '${toolCallId}' not found!`, undefined, 404);
this.toolCallId = toolCallId;
}
}
exports.ToolCallNotFoundException = ToolCallNotFoundException;
//# sourceMappingURL=ToolCallNotFoundException.js.map