nitinol_resolver/
errors.rs1#[derive(Debug, thiserror::Error)]
2pub enum ResolveError {
3 #[error(transparent)]
4 Deserialize(#[from] nitinol_core::errors::DeserializeError),
5
6 #[error("An error occurred while applying the event. {trace}")]
7 InProcess { trace: String },
8}