Hİ all
When internet connection is off, app42 debugs in unity that "WWW Connection Error :: Could not resolve host: api.shephertz.com; Host not found" but what is the related error code that I can check for connection error. Will I compare that string? There must be an error code or something different that I can check inside OnException()
public void OnException(Exception e)
{
App42Exception ex = (App42Exception)e;
int appErrorCode = ex.GetAppErrorCode ();
int httpErrorCode = ex.GetHttpErrorCode ();
}