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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

492}
493
494export class OAuthRegisterDynamicError
495 extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", {
496 message: Schema.String,
497 })
498 implements UserActionableError
499{
500 readonly __executorUserActionable = true;
501 readonly code = "oauth_register_dynamic_error";
502
503 get userMessage(): string {
504 return this.message;
505 }
506}
507
508export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()(
509 "OAuthSessionNotFoundError",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected