Package com.stripe.android.core.exception

Types

Link copied to clipboard
class APIConnectionException(message: String?, cause: Throwable?) : StripeException

An Exception that represents a failure to connect to Stripe's API.

Link copied to clipboard
class APIException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException

An Exception that represents an internal problem with Stripe's servers.

Link copied to clipboard
class InvalidRequestException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException

A StripeException indicating that invalid parameters were used in a request.

Link copied to clipboard
abstract class StripeException(stripeError: StripeError?, requestId: String?, statusCode: Int, cause: Throwable?, message: String?) : Exception

A base class for Stripe-related exceptions.