diff --git a/argus-core/src/lib.rs b/argus-core/src/lib.rs index 596e0ac..a413a00 100644 --- a/argus-core/src/lib.rs +++ b/argus-core/src/lib.rs @@ -21,6 +21,9 @@ pub enum Error { #[error("invalid operation due to bad type")] InvalidOperation, + + #[error("name not in signal trace")] + SignalNotPresent, } pub type ArgusError = Error;