diff --git a/src/Plugin.InAppBilling/Shared/InAppBillingExceptions.shared.cs b/src/Plugin.InAppBilling/Shared/InAppBillingExceptions.shared.cs
index 39ce8c3..3b92db6 100644
--- a/src/Plugin.InAppBilling/Shared/InAppBillingExceptions.shared.cs
+++ b/src/Plugin.InAppBilling/Shared/InAppBillingExceptions.shared.cs
@@ -90,12 +90,12 @@ public class InAppBillingPurchaseException : Exception
///
///
///
- public InAppBillingPurchaseException(PurchaseError error, Exception ex) : base("Unable to process purchase.", ex) => PurchaseError = error;
+ public InAppBillingPurchaseException(PurchaseError error, Exception ex) : base($"Unable to process purchase : {error:G}.", ex) => PurchaseError = error;
///
///
///
///
- public InAppBillingPurchaseException(PurchaseError error) : base("Unable to process purchase.") => PurchaseError = error;
+ public InAppBillingPurchaseException(PurchaseError error) : base($"Unable to process purchase : {error:G}.") => PurchaseError = error;
///
///