| 203 | } |
| 204 | |
| 205 | export class OAuthStartError |
| 206 | extends Schema.TaggedErrorClass<OAuthStartError>()("OAuthStartError", { |
| 207 | message: Schema.String, |
| 208 | }) |
| 209 | implements UserActionableError |
| 210 | { |
| 211 | readonly __executorUserActionable = true; |
| 212 | readonly code = "oauth_start_error"; |
| 213 | |
| 214 | get userMessage(): string { |
| 215 | return this.message; |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | export class OAuthCompleteError |
| 220 | extends Schema.TaggedErrorClass<OAuthCompleteError>()("OAuthCompleteError", { |
nothing calls this directly
no outgoing calls
no test coverage detected