refactor(connector): [Payeezy] update error message (#2919)

This commit is contained in:
HeetVekariya
2023-11-23 00:57:45 +05:30
committed by GitHub
parent f91d4ae11b
commit cb65370606

View File

@ -72,11 +72,9 @@ impl TryFrom<utils::CardIssuer> for PayeezyCardType {
utils::CardIssuer::Maestro
| utils::CardIssuer::DinersClub
| utils::CardIssuer::JCB
| utils::CardIssuer::CarteBlanche => Err(errors::ConnectorError::NotSupported {
message: utils::SELECTED_PAYMENT_METHOD.to_string(),
connector: "Payeezy",
}
.into()),
| utils::CardIssuer::CarteBlanche => Err(errors::ConnectorError::NotImplemented(
utils::get_unimplemented_payment_method_error_message("Payeezy"),
))?,
}
}
}
@ -262,11 +260,9 @@ fn get_payment_method_data(
| api::PaymentMethodData::Reward
| api::PaymentMethodData::Upi(_)
| api::PaymentMethodData::Voucher(_)
| api::PaymentMethodData::GiftCard(_) => Err(errors::ConnectorError::NotSupported {
message: utils::SELECTED_PAYMENT_METHOD.to_string(),
connector: "Payeezy",
}
.into()),
| api::PaymentMethodData::GiftCard(_) => Err(errors::ConnectorError::NotImplemented(
utils::get_unimplemented_payment_method_error_message("Payeezy"),
))?,
}
}