UNPKG

donobu

Version:

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

12 lines 580 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GptPlatformInternalErrorException = void 0; const DonobuException_1 = require("./DonobuException"); /** This exception is thrown if the underlying GPT platform throws an internal/server error. */ class GptPlatformInternalErrorException extends DonobuException_1.DonobuException { constructor(message) { super(message, undefined, 500); } } exports.GptPlatformInternalErrorException = GptPlatformInternalErrorException; //# sourceMappingURL=GptPlatformInternalErrorException.js.map