alchemy_lifecycle/error.rs
1//! Implements an Error type. Currently we just alias this to
2//! Box<Error>, because I'm not sure how this should really look. Consider
3//! it an implementation detail hook that could change down the road.
4
5/// A generic Error type that we use. It currently just aliases to `Box<std::error::Error>`,
6/// but could change in the future.
7pub type Error = Box<std::error::Error>;