This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
el-retired/_archive/rust-bootstrap/engrams/el-fmt/src/error.rs
T

12 lines
198 B
Rust

//! Error types for el-fmt.
use thiserror::Error;
#[derive(Debug, Error)]
pub enum FmtError {
#[error("lex error: {0}")]
Lex(String),
#[error("parse error: {0}")]
Parse(String),
}