(message: impl Into<Cow<'static, str>>)
| 416 | const DISCORD_NOT_FOUND_CLASS_NAME: &str = "DiscordNotFoundError"; |
| 417 | |
| 418 | pub fn not_found_error(message: impl Into<Cow<'static, str>>) -> AnyError { |
| 419 | custom_error(DISCORD_NOT_FOUND_CLASS_NAME, message) |
| 420 | } |
| 421 | |
| 422 | #[op2(async)] |
| 423 | #[serde] |
no outgoing calls
no test coverage detected