1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! The errors that can be thrown for this boolean contract, including demonstration ones.
use cosmwasm_std::StdError;
use thiserror::Error;
/// List of common errors, including ones with arguments
#[derive(Error, Debug)]
pub enum ContractError {
#[error("{0}")]
Std(#[from] StdError),
#[error("Unauthorized")]
Unauthorized {},
#[error("This error will print a variable: {parameter1})")]
SpecificError { parameter1: String },
}