| 233 | } |
| 234 | |
| 235 | export class OAuthProbeError |
| 236 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 237 | message: Schema.String, |
| 238 | }) |
| 239 | implements UserActionableError |
| 240 | { |
| 241 | readonly __executorUserActionable = true; |
| 242 | readonly code = "oauth_probe_error"; |
| 243 | |
| 244 | get userMessage(): string { |
| 245 | return this.message; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | export class OAuthRegisterDynamicError |
| 250 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected