carbon_lib/
error.rs

1#[derive(Debug)]
2pub enum CarbonError {
3    ThemeNotFound(String),
4    SyntaxNotFound(String),
5}
6
7pub type CarbonResult<T> = Result<T, CarbonError>;
8
9impl CarbonError {}