async_ecs/
error.rs

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