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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

239}
240
241export class OAuthRegisterDynamicError
242 extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", {
243 message: Schema.String,
244 })
245 implements UserActionableError
246{
247 readonly __executorUserActionable = true;
248 readonly code = "oauth_register_dynamic_error";
249
250 get userMessage(): string {
251 return this.message;
252 }
253}
254
255export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()(
256 "OAuthSessionNotFoundError",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected