| 435 | } |
| 436 | |
| 437 | export class OAuthProbeError |
| 438 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 439 | message: Schema.String, |
| 440 | }) |
| 441 | implements UserActionableError |
| 442 | { |
| 443 | readonly __executorUserActionable = true; |
| 444 | readonly code = "oauth_probe_error"; |
| 445 | |
| 446 | get userMessage(): string { |
| 447 | return this.message; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | export class OAuthRegisterDynamicError |
| 452 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected