We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4df3a9 commit 184784fCopy full SHA for 184784f
app/src/main/java/com/klee/sapio/data/RetrofitClient.kt
@@ -15,6 +15,7 @@ import okhttp3.MultipartBody
15
import okhttp3.OkHttpClient
16
import okhttp3.RequestBody.Companion.toRequestBody
17
import retrofit2.Call
18
+import retrofit2.HttpException
19
import retrofit2.Response
20
import retrofit2.Retrofit
21
import retrofit2.converter.jackson.JacksonConverterFactory
@@ -159,9 +160,7 @@ class EvaluationService @Inject constructor(
159
160
settings.getRootConfigurationLevel(),
161
pageNumber
162
).await()
- } catch (exception: Exception) {
163
- exception.printStackTrace()
164
- }
+ } catch (exception: HttpException) {}
165
166
return strapiAnswer
167
}
0 commit comments