| 416 | } |
| 417 | |
| 418 | export class OAuthProbeError |
| 419 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 420 | message: Schema.String, |
| 421 | }) |
| 422 | implements UserActionableError |
| 423 | { |
| 424 | readonly __executorUserActionable = true; |
| 425 | readonly code = "oauth_probe_error"; |
| 426 | |
| 427 | get userMessage(): string { |
| 428 | return this.message; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | export class OAuthRegisterDynamicError |
| 433 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected