donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
14 lines • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SuiteNotFoundException = void 0;
const DonobuException_1 = require("./DonobuException");
class SuiteNotFoundException extends DonobuException_1.DonobuException {
constructor(message) {
super(message, undefined, 404);
}
static forId(suiteId) {
return new SuiteNotFoundException(`Suite with ID '${suiteId}' was not found!`);
}
}
exports.SuiteNotFoundException = SuiteNotFoundException;
//# sourceMappingURL=SuiteNotFoundException.js.map