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