MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / OAuthStartError

Class OAuthStartError

packages/core/sdk/src/oauth-client.ts:197–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197export class OAuthStartError
198 extends Schema.TaggedErrorClass<OAuthStartError>()("OAuthStartError", {
199 message: Schema.String,
200 })
201 implements UserActionableError
202{
203 readonly __executorUserActionable = true;
204 readonly code = "oauth_start_error";
205
206 get userMessage(): string {
207 return this.message;
208 }
209}
210
211export class OAuthCompleteError
212 extends Schema.TaggedErrorClass<OAuthCompleteError>()("OAuthCompleteError", {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected