1use nitinol_core::identifier::EntityId; 2 3#[derive(Debug, thiserror::Error)] 4pub enum MemoryIoError { 5 #[error("No target event was found. {0}")] 6 NotFound(EntityId), 7}