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

Class OAuthStartError

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

Source from the content-addressed store, hash-verified

281}
282
283export class OAuthStartError
284 extends Schema.TaggedErrorClass<OAuthStartError>()("OAuthStartError", {
285 message: Schema.String,
286 })
287 implements UserActionableError
288{
289 readonly __executorUserActionable = true;
290 readonly code = "oauth_start_error";
291
292 get userMessage(): string {
293 return this.message;
294 }
295}
296
297export class OAuthCompleteError
298 extends Schema.TaggedErrorClass<OAuthCompleteError>()("OAuthCompleteError", {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected