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