pub enum ContractError {
Std(StdError),
PaymentError(PaymentError),
Unauthorized {},
AddressNotFound {
addr: String,
},
OverPerAddressLimit {},
AddressAlreadyExists {
addr: String,
},
EmptyWhitelist {},
}Variants§
Std(StdError)
PaymentError(PaymentError)
Fields
AddressNotFound
OverPerAddressLimit
Fields
AddressAlreadyExists
EmptyWhitelist
Fields
Trait Implementations§
source§impl Debug for ContractError
impl Debug for ContractError
source§impl Display for ContractError
impl Display for ContractError
source§impl Error for ContractError
impl Error for ContractError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<PaymentError> for ContractError
impl From<PaymentError> for ContractError
source§fn from(source: PaymentError) -> Self
fn from(source: PaymentError) -> Self
Converts to this type from the input type.