mg/src/error.rs

6 lines
121 B
Rust
Raw Normal View History

2025-02-04 20:24:41 +01:00
#[derive(thiserror::Error, Debug)]
pub enum RuntimeError {
#[error("Invalid character found")]
UnexpectedChar,
}