routee_compass_core/model/termination/
error.rs1#[derive(thiserror::Error, Debug, Clone)]
2pub enum TerminationModelError {
3 #[error("query terminated due to {0}")]
4 QueryTerminated(String),
5 #[error("termination model runtime error {0}")]
6 RuntimeError(String),
7}