Skip to main content

error_engine/
lib.rs

1pub use thiserror;
2
3mod catalog;
4mod diagnostic;
5mod engine;
6mod error;
7
8pub use catalog::{Catalog, CatalogEntry, UNKNOWN_CODE};
9pub use diagnostic::{EngineDiagnostic, Severity};
10pub use engine::Engine;
11pub use error::EngineError;