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

Class OAuthRegisterDynamicError

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

Source from the content-addressed store, hash-verified

247}
248
249export class OAuthRegisterDynamicError
250 extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", {
251 message: Schema.String,
252 })
253 implements UserActionableError
254{
255 readonly __executorUserActionable = true;
256 readonly code = "oauth_register_dynamic_error";
257
258 get userMessage(): string {
259 return this.message;
260 }
261}
262
263export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()(
264 "OAuthSessionNotFoundError",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected