use thiserror::Error; /// Represents errors that can occur during data import operations. /// /// These errors typically happen when attempting to import events and RSVPs /// from different sources, including community and Smokesignal systems. #[derive(Debug, Error)] pub(crate) enum ImportError { /// Error when listing Smokesignal events fails. /// /// This error occurs when attempting to retrieve a list of Smokesignal /// events during an import operation fails, preventing the import. #[error("error-smokesignal-import-1 Failed to list Smokesignal events: {0}")] FailedToListSmokesignalEvents(String), }