| 234 | } |
| 235 | |
| 236 | export class OAuthRegisterDynamicError |
| 237 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
| 238 | message: Schema.String, |
| 239 | }) |
| 240 | implements UserActionableError |
| 241 | { |
| 242 | readonly __executorUserActionable = true; |
| 243 | readonly code = "oauth_register_dynamic_error"; |
| 244 | |
| 245 | get userMessage(): string { |
| 246 | return this.message; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()( |
| 251 | "OAuthSessionNotFoundError", |
nothing calls this directly
no outgoing calls
no test coverage detected