use cosmwasm_std::StdError;
use cw0::PaymentError;
use thiserror::Error;
#[derive(Error, Debug, PartialEq)]
pub enum ContractError {
#[error("{0}")]
Std(#[from] StdError),
#[error("{0}")]
Base(#[from] cw20_base::ContractError),
#[error("{0}")]
Payment(#[from] PaymentError),
#[error("Unauthorized")]
Unauthorized {},
}