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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

325}
326
327export class OAuthRegisterDynamicError
328 extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", {
329 message: Schema.String,
330 })
331 implements UserActionableError
332{
333 readonly __executorUserActionable = true;
334 readonly code = "oauth_register_dynamic_error";
335
336 get userMessage(): string {
337 return this.message;
338 }
339}
340
341export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()(
342 "OAuthSessionNotFoundError",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected