1 2 3 4 5 6 7 8 9
use thiserror::Error; use crate::entity::Entity; #[derive(Error, Debug)] pub enum Error { #[error("Entity is not alive: {0}!")] EntityIsNotAlive(Entity), }