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