commonMain.com.revenuecat.purchases.kmp.models.PurchasesException.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 wrapping a [PurchasesError].
*/
public open class PurchasesException(public val error: PurchasesError) : Exception() {
public val code: PurchasesErrorCode
get() = error.code
public val underlyingErrorMessage: String?
get() = error.underlyingErrorMessage
override val message: String
get() = error.message
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy