| 247 | } |
| 248 | |
| 249 | export class OAuthRegisterDynamicError |
| 250 | extends Schema.TaggedErrorClass<OAuthRegisterDynamicError>()("OAuthRegisterDynamicError", { |
| 251 | message: Schema.String, |
| 252 | }) |
| 253 | implements UserActionableError |
| 254 | { |
| 255 | readonly __executorUserActionable = true; |
| 256 | readonly code = "oauth_register_dynamic_error"; |
| 257 | |
| 258 | get userMessage(): string { |
| 259 | return this.message; |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | export class OAuthSessionNotFoundError extends Schema.TaggedErrorClass<OAuthSessionNotFoundError>()( |
| 264 | "OAuthSessionNotFoundError", |
nothing calls this directly
no outgoing calls
no test coverage detected