#[derive(Debug)]
pub struct RemeshError(pub String);
impl std::fmt::Display for RemeshError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Remesh error occurred: {}", self.0)
}
}
impl std::error::Error for RemeshError {}