typst_analyzer/
error_ctx.rs

1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum TyError {
5    #[error("Error: this")]
6    NotFound,
7    #[error("Error: 0")]
8    Invalid,
9    #[error("Error: 0")]
10    SyntaxError,
11}