1 2 3 4 5 6
//! Shared error types for Athena client helpers. pub use crate::client::backend::BackendError; pub use crate::client::builder::BuilderError; /// Alias used when working with Athena client helpers. pub type ClientResult<T> = Result<T, BackendError>;