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