| 220 | } |
| 221 | |
| 222 | export class OAuthProbeError |
| 223 | extends Schema.TaggedErrorClass<OAuthProbeError>()("OAuthProbeError", { |
| 224 | message: Schema.String, |
| 225 | }) |
| 226 | implements UserActionableError |
| 227 | { |
| 228 | readonly __executorUserActionable = true; |
| 229 | readonly code = "oauth_probe_error"; |
| 230 | |
| 231 | get userMessage(): string { |
| 232 | return this.message; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | export class OAuthRegisterDynamicError |
| 237 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
nothing calls this directly
no outgoing calls
no test coverage detected