| 449 | } |
| 450 | |
| 451 | export class OAuthRegisterDynamicError |
| 452 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
| 453 | message: Schema.String, |
| 454 | }) |
| 455 | implements UserActionableError |
| 456 | { |
| 457 | readonly __executorUserActionable = true; |
| 458 | readonly code = "oauth_register_dynamic_error"; |
| 459 | |
| 460 | get userMessage(): string { |
| 461 | return this.message; |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()( |
| 466 | "OAuthSessionNotFoundError", |
nothing calls this directly
no outgoing calls
no test coverage detected