| 492 | } |
| 493 | |
| 494 | export class OAuthRegisterDynamicError |
| 495 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
| 496 | message: Schema.String, |
| 497 | }) |
| 498 | implements UserActionableError |
| 499 | { |
| 500 | readonly __executorUserActionable = true; |
| 501 | readonly code = "oauth_register_dynamic_error"; |
| 502 | |
| 503 | get userMessage(): string { |
| 504 | return this.message; |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()( |
| 509 | "OAuthSessionNotFoundError", |
nothing calls this directly
no outgoing calls
no test coverage detected