1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use thiserror::Error;
/// The error type returned by methods in this crate.
#[derive(Error, Debug)]
pub enum Error<E> {
    /// Manager Errors
    #[error("{0}")]
    Inner(E),
    /// Timeout
    #[error("Time out in the connection pool")]
    Timeout,
    /// BadConn
    #[error("Bad connection in mobc")]
    BadConn,
    /// The pool has been closed or dropped
    #[error("The pool is closed")]
    PoolClosed,
}

impl<E> From<E> for Error<E> {
    fn from(e: E) -> Error<E> {
        Error::Inner(e)
    }
}