use of com.dante.exception.ApiException in project 91Pop by DanteAndroid.
the class CallBackWrapper method onError.
@Override
public void onError(Throwable e) {
ApiException apiException = ApiException.handleException(e);
onError(apiException.getMessage(), apiException.getCode());
e.printStackTrace();
}
Aggregations