waffle/src/errors.rs

17 lines
349 B
Rust
Raw Normal View History

//! Error types.
#[derive(Clone, Debug)]
pub enum FrontendError {
UnsupportedFeature(String),
2022-11-29 18:36:45 +00:00
TooLarge(String),
Internal(String),
}
impl std::fmt::Display for FrontendError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::Debug::fmt(self, f)
}
}
impl std::error::Error for FrontendError {}