summaryrefslogtreecommitdiff
path: root/src/errors.rs
blob: 6ea498d2bb34d1583c921bfc2f0e7b1c289d4fa1 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
use std::path::PathBuf;

#[derive(Debug, thiserror::Error)]
pub enum BumperError {
    #[error("Can't figure out what kind of project: {0}")]
    UnknownProjectKind(PathBuf),

    #[error("Couldn't read file {0}: {1}")]
    Read(PathBuf, #[source] std::io::Error),

    #[error("Couldn't write file {0}: {1}")]
    Write(PathBuf, #[source] std::io::Error),

    #[error("Couldn't find Cargo.toml in {0}: {1}")]
    CargoTomlNotFound(PathBuf, #[source] cargo_edit::Error),

    #[error("Couldn't parse Cargo.toml from {0}: {1}")]
    FromToml(PathBuf, #[source] cargo_edit::Error),

    #[error("Couldn't create Cargo.toml manifest to {0}: {1}")]
    WriteToml(PathBuf, #[source] cargo_edit::Error),

    #[error("Cargo.toml doesn't have a 'package' table")]
    NoPackage(#[source] cargo_edit::Error),

    #[error("'project' in Cargo.toml is not a table")]
    ProjectNotTable,

    #[error("Cargo.toml doesn't specify a package name")]
    UnnamedProject,

    #[error("Couldn't turn {0} into an absolute path: {1}")]
    AbsPath(PathBuf, #[source] std::io::Error),

    #[error("Failed to run git {1:?} in {0}: {2}")]
    GitInvoke(PathBuf, Vec<String>, #[source] std::io::Error),

    #[error("git {1:?} failed in {0}: {2}")]
    Git(PathBuf, Vec<String>, String),

    #[error("Failed to run dch in {0}: {1}")]
    DchInvoke(PathBuf, #[source] std::io::Error),

    #[error("dch failed in {0}: {1}")]
    Dch(PathBuf, String),
}