| 306 | } |
| 307 | |
| 308 | export class OAuthProbeError |
| 309 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 310 | message: Schema.String, |
| 311 | }) |
| 312 | implements UserActionableError |
| 313 | { |
| 314 | readonly __executorUserActionable = true; |
| 315 | readonly code = "oauth_probe_error"; |
| 316 | |
| 317 | get userMessage(): string { |
| 318 | return this.message; |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | export class OAuthRegisterDynamicError |
| 323 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected