The smokesignal.events web application
1use thiserror::Error;
2
3/// Represents errors that can occur during data import operations.
4///
5/// These errors typically happen when attempting to import events and RSVPs
6/// from different sources, including community and Smokesignal systems.
7#[derive(Debug, Error)]
8pub(crate) enum ImportError {
9 /// Error when listing Smokesignal events fails.
10 ///
11 /// This error occurs when attempting to retrieve a list of Smokesignal
12 /// events during an import operation fails, preventing the import.
13 #[error("error-smokesignal-import-1 Failed to list Smokesignal events: {0}")]
14 FailedToListSmokesignalEvents(String),
15}