Skip to content

Commit

Permalink
removes dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmuvi-stripe committed Dec 20, 2024
1 parent ceb2fdf commit 207c5c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class AttestationError(
val errorType: ErrorType,
message: String,
cause: Throwable? = null
) : Throwable(message, cause) {
) : Exception(message, cause) {

enum class ErrorType(
val isRetriable: Boolean
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.stripe.attestation

import androidx.annotation.RestrictTo
import com.google.android.gms.tasks.Task
import com.google.android.play.core.integrity.StandardIntegrityManager
import com.google.android.play.core.integrity.StandardIntegrityManager.PrepareIntegrityTokenRequest
import com.google.android.play.core.integrity.StandardIntegrityManager.StandardIntegrityTokenProvider
Expand Down

0 comments on commit 207c5c2

Please sign in to comment.