5 lines
No EOL
118 B
Rust
5 lines
No EOL
118 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
#[error("Missing {0}.")]
|
|
pub struct SuitabilityError(pub &'static str); |