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