UNPKG

donobu

Version:

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

13 lines 695 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GptPlatformAuthenticationFailedException = void 0; const DonobuException_1 = require("./DonobuException"); /** This is thrown if authentication fails with the given GPT platform. */ class GptPlatformAuthenticationFailedException extends DonobuException_1.DonobuException { constructor(gptPlatform) { super(`Failed to authenticate with the '${gptPlatform}' GPT platform!`, undefined, 401); this.gptPlatform = gptPlatform; } } exports.GptPlatformAuthenticationFailedException = GptPlatformAuthenticationFailedException; //# sourceMappingURL=GptPlatformAuthenticationFailedException.js.map