summaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: 548dcc158638e681f0a4d515f65e474e5e55e563 (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
47
48
49
use timetype::TimeType;

use thiserror::Error;

pub type Result<T> = ::std::result::Result<T, Error>;

#[derive(Debug, Clone, Eq, PartialEq, Error)]
pub enum Error {

    #[error("Unknown Error")]
    UnknownError,

    #[error("Cannot add: {0:?} + {1:?}")]
    CannotAdd(TimeType, TimeType),

    #[error("Cannot subtract: {0:?} - {1:?}")]
    CannotSub(TimeType, TimeType),

    #[error("The passed argument is not an amount: {0:?}")]
    ArgumentErrorNotAnAmount(TimeType),

    #[error("The passed argument is not a moment, but a {0}")]
    ArgumentErrorNotAMoment(&'static str),

    #[error("Argument Error: Cannot calculate end-of-year on a {0:?}")]
    CannotCalculateEndOfYearOn(TimeType),

    #[error("Argument Error: Cannot calculate end-of-month on a {0:?}")]
    CannotCalculateEndOfMonthOn(TimeType),

    #[error("Cannot compare Day to non-Moment TimeType: {0:?}")]
    CannotCompareDayTo(&'static str),

    #[error("Cannot compare Month to non-Moment TimeType: {0:?}")]
    CannotCompareMonthTo(&'static str),

    #[error("Out of bounds: {0}-{1}-{2}T{3}:{4}:{5}")]
    OutOfBounds(i32, u32, u32, u32, u32, u32),

    #[error("Cannot calculate date for iterator")]
    NotADateInsideIterator,

    #[error("Unknown parser error")]
    UnknownParserError,

    #[error("Tokenizer error")]
    NomError(#[from] nom::Err),
}