I'm using saveInbackground() method with Parse passing a wrong class name (Xeveloper instead of Developer). Should'nt I have a ParseException of type INVALID_CLASS_NAME on the SaveCallback() instead of a NULL ?
ParseObject developer = new ParseObject("Xeveloper");
developer.put("developerName", "Walid MEDDEB");
developer.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if ( e == null ) {
Log.d("-->", "Success !!");
} else {
Log.d("-->", "Error !!");
}
}});
Thanks, Walid.