17 lines
349 B
Rust
17 lines
349 B
Rust
//! Error types.
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub enum FrontendError {
|
|
UnsupportedFeature(String),
|
|
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 {}
|