feat: add error for traces without signal names

This commit is contained in:
Anand Balakrishnan 2023-03-24 13:25:27 -07:00
parent f86f0a2ea8
commit e982dfe5a5
No known key found for this signature in database

View file

@ -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;