Android BackendlessException documentation not/no longer correct?

As seen in this link, a BackendlessException should have a method called getFault() to get an BackendlessFault object.

However while coding a BackendlessException has the same methods as BackendlessFault and no getFault().

Are these two classes undergoing a merge or something and is the documentation in the provided link no longer accurate?

Hi Bart,

The BackendlessException class has gone through a few changes and the getFault() method had been replaced by:

public String getMessage()
{
return backendlessFault.getMessage();
}

public String getDetail()
{
return backendlessFault.getDetail();
}

I’ll make sure the doc is updated.

Regards,
Mark