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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected