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
use cosmwasm_std::StdError;
use cw_utils::PaymentError;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum ContractError {
#[error("{0}")]
Std(#[from] StdError),
#[error("{0}")]
PaymentError(#[from] PaymentError),
#[error("Unauthorized")]
Unauthorized {},
#[error("AddressNotFound {addr}")]
AddressNotFound { addr: String },
#[error("OverPerAddressLimit")]
OverPerAddressLimit {},
#[error("AddressAlreadyExists {addr}")]
AddressAlreadyExists { addr: String },
#[error("Empty whitelist, must provide at least one address")]
EmptyWhitelist {},
}