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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

449}
450
451export class OAuthRegisterDynamicError
452 extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", {
453 message: Schema.String,
454 })
455 implements UserActionableError
456{
457 readonly __executorUserActionable = true;
458 readonly code = "oauth_register_dynamic_error";
459
460 get userMessage(): string {
461 return this.message;
462 }
463}
464
465export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()(
466 "OAuthSessionNotFoundError",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected