use thiserror::Error;
#[derive(Debug, Error, PartialEq, Eq)]
pub enum SuperclusterError {
#[error("Cluster not found with the specified ID.")]
ClusterNotFound,
#[error("Tree not found at the specified zoom level.")]
TreeNotFound,
#[error("Tile not found at the specified coordinates and zoom level.")]
TileNotFound,
}