java.lang.IllegalArgumentException: Cannot deserialize value of type `io.github.jav.exposerversdk.enums.TicketError` from String "InvalidCredentials": not one of the values accepted for Enum class: [DeviceNotRegistered] at [Source: UNKNOWN; line: -1, column: -1]
Currently the TicketError enum specifies the only possible error to be DeviceNotRegistered. As seen above it is possible at runtime for InvalidCredentials error to find it's way into this enum class.
This issue would have InvalidCredentials be added to the possible enum values for the class.
Currently the
TicketErrorenum specifies the only possible error to beDeviceNotRegistered. As seen above it is possible at runtime forInvalidCredentialserror to find it's way into this enum class.This issue would have
InvalidCredentialsbe added to the possible enum values for the class.