| 195 | } |
| 196 | |
| 197 | export class OAuthStartError |
| 198 | extends Schema.TaggedErrorClass<OAuthStartError>()("OAuthStartError", { |
| 199 | message: Schema.String, |
| 200 | }) |
| 201 | implements UserActionableError |
| 202 | { |
| 203 | readonly __executorUserActionable = true; |
| 204 | readonly code = "oauth_start_error"; |
| 205 | |
| 206 | get userMessage(): string { |
| 207 | return this.message; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | export class OAuthCompleteError |
| 212 | extends Schema.TaggedErrorClass<OAuthCompleteError>()("OAuthCompleteError", { |
nothing calls this directly
no outgoing calls
no test coverage detected