Hey.
I’m trying to do a log-in method where I use a Callback which overrides a “handleFault” method.
In there I would like to check for some specific error like “Username already taken” etc…
With Parse I did:
e.getCode() == ParseException.USERNAME_MISSING
But BackendlessFault only returns String with fault.getCode();. So how would I check for a specific error ?