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