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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected