donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
15 lines • 621 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GptConfigNotFoundException = void 0;
const DonobuException_1 = require("./DonobuException");
/**
* Thrown when attempting resolve a GPT configuration that does not exist.
*/
class GptConfigNotFoundException extends DonobuException_1.DonobuException {
constructor(configName) {
super(`The GPT configuration '${configName}' was not found!'`, undefined, 404);
this.configName = configName;
}
}
exports.GptConfigNotFoundException = GptConfigNotFoundException;
//# sourceMappingURL=GptConfigNotFoundException.js.map