mg/src/error.rs

8 lines
133 B
Rust
Raw Normal View History

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