mg/src/error.rs
Patrick Marie bfc0e7f7b7
All checks were successful
CI checks / Format (push) Successful in 26s
CI checks / Clippy (push) Successful in 37s
chore: fix clippy
2025-02-04 20:27:15 +01:00

8 lines
133 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
pub enum RuntimeError {
#[error("Invalid character found")]
UnexpectedChar,
}