Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-28 23:01:32 +02:00
parent 78497e41a8
commit 474cd50820
7 changed files with 22 additions and 26 deletions

View file

@ -15,7 +15,7 @@ sealed class ApiResponseError : Exception() {
data class HttpException(
val code: Code,
override val message: String?,
val errorBody: String?
val errorBody: String?,
) : ApiResponseError() {
// region Error Codes

View file

@ -2,7 +2,6 @@ package com.tangem.datasource.api.express.models.response
import com.squareup.moshi.Json
import java.math.BigDecimal
import java.math.BigInteger
data class ExpressErrorResponse(
@Json(name = "error")