97b01db23e
* cleaned up MixProcessingError
* Added Error impl to (hopefully) all error enums in the codebase
* Replaced all occurences of error("{0}") with error(transparent)
* Changelog entry
35 lines
940 B
Rust
35 lines
940 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use cosmwasm_std::StdError;
|
|
use cw_controllers::AdminError;
|
|
use thiserror::Error;
|
|
|
|
/// Custom errors for contract failure conditions.
|
|
///
|
|
/// Add any other custom errors you like here.
|
|
/// Look at https://docs.rs/thiserror/1.0.21/thiserror/ for details.
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum ContractError {
|
|
#[error(transparent)]
|
|
Std(#[from] StdError),
|
|
|
|
#[error("Received multiple coin types")]
|
|
MultipleDenoms,
|
|
|
|
#[error("No coin was sent for voucher")]
|
|
NoCoin,
|
|
|
|
#[error("Wrong coin denomination, you must send {mix_denom}")]
|
|
WrongDenom { mix_denom: String },
|
|
|
|
#[error("There aren't enough funds in the contract")]
|
|
NotEnoughFunds,
|
|
|
|
#[error("Credential already spent or in process of spending")]
|
|
DuplicateBlindedSerialNumber,
|
|
|
|
#[error(transparent)]
|
|
Admin(#[from] AdminError),
|
|
}
|