| 471 | } |
| 472 | |
| 473 | export class OAuthProbeError |
| 474 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 475 | message: Schema.String, |
| 476 | }) |
| 477 | implements UserActionableError |
| 478 | { |
| 479 | readonly __executorUserActionable = true; |
| 480 | readonly code = "oauth_probe_error"; |
| 481 | |
| 482 | get userMessage(): string { |
| 483 | return this.message; |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | export class OAuthRegisterDynamicError |
| 488 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected