1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use std::error;
use std::fmt;

/// Client errors
#[derive(Debug)]
pub enum TectonicError {
    /// Error as sent by server
    ServerError(String),
    /// DB does not exist
    DBNotFoundError(String),
    /// Client connection issues
    ConnectionError,
}
use self::TectonicError::*;

impl error::Error for TectonicError {
    fn description(&self) -> &str {
        match *self {
            ServerError(ref msg) => &msg,
            DBNotFoundError(ref dbname) => &dbname,
            ConnectionError => "disconnection from tectonicdb",
        }
    }
}

impl fmt::Display for TectonicError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            ServerError(ref msg) => write!(f, "TectonicError: {}", msg),
            DBNotFoundError(ref dbname) => write!(f, "DBNotFoundError: {}", dbname),
            ConnectionError => write!(f, "ConnectionError"),
        }
    }
}