aboutsummaryrefslogtreecommitdiff
path: root/src/error.rs
blob: a9c23b170bce25376359f339afa013ab001d682c (plain) (blame)
1
2
3
4
5
6
7
8
#[derive(thiserror::Error, Debug)]
pub enum BillSplitError {
    #[error("Paid amount cannot be negative")]
    NegativePaidAmount,

    #[error("Duplicate split members found")]
    DuplicateSplitMembers,
}