micromegas_tracing/
errors.rs

1//! Error types and handling for tracing operations
2
3use thiserror::Error;
4
5#[derive(Error, Debug)]
6pub enum Error {
7    #[error("Event dispatch already initialized")]
8    AlreadyInitialized(),
9}
10
11pub type Result<T> = std::result::Result<T, Error>;