VoxelEngine2/src/errors.rs
2024-04-16 20:14:42 +02:00

5 lines
No EOL
118 B
Rust

use thiserror::Error;
#[derive(Debug, Error)]
#[error("Missing {0}.")]
pub struct SuitabilityError(pub &'static str);