fix: improved error handling during scanning phase

This commit is contained in:
antonio 2023-06-24 15:02:13 +02:00
parent e8f2385928
commit 7312ae20d1
3 changed files with 14 additions and 6 deletions

View file

@ -4,6 +4,6 @@ import androidx.annotation.Keep
@Keep
class Error {
var code: ErrorCode? = null
var code: Int? = null
var message: String? = null
}