| 281 | } |
| 282 | |
| 283 | export class OAuthStartError |
| 284 | extends Schema.TaggedErrorClass<OAuthStartError>()("OAuthStartError", { |
| 285 | message: Schema.String, |
| 286 | }) |
| 287 | implements UserActionableError |
| 288 | { |
| 289 | readonly __executorUserActionable = true; |
| 290 | readonly code = "oauth_start_error"; |
| 291 | |
| 292 | get userMessage(): string { |
| 293 | return this.message; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | export class OAuthCompleteError |
| 298 | extends Schema.TaggedErrorClass<OAuthCompleteError>()("OAuthCompleteError", { |
nothing calls this directly
no outgoing calls
no test coverage detected