6 lines
121 B
Rust
6 lines
121 B
Rust
|
#[derive(thiserror::Error, Debug)]
|
||
|
pub enum RuntimeError {
|
||
|
#[error("Invalid character found")]
|
||
|
UnexpectedChar,
|
||
|
}
|