aboutsummaryrefslogtreecommitdiffstats
path: root/license-generator/src/errors.rs
blob: e21edd489102dc51a97e677b0f1c4136f6f8d911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use base64;
use log;
use mysql;
use paddle;

error_chain! {
    foreign_links {
        EnvVar(::std::env::VarError);
        Io(::std::io::Error);

        Base64(base64::DecodeError);
        Log(log::SetLoggerError);
        MySql(mysql::error::Error);

        Paddle(paddle::errors::Error);
    }
}