commonMain.com.revenuecat.purchases.kmp.models.PurchasesTransactionException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purchases-kmp-models Show documentation
Show all versions of purchases-kmp-models Show documentation
Mobile subscriptions in hours, not months.
package com.revenuecat.purchases.kmp.models
/**
* An exception indicating an error occurred during a transaction. Extends [PurchasesException] by
* adding a [userCancelled] property.
*/
public class PurchasesTransactionException(
purchasesError: PurchasesError,
/**
* Whether the user cancelled the transaction.
*/
public val userCancelled: Boolean,
) : PurchasesException(purchasesError)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy