apps/sasquatch/src/main/java/com/microsoft/appcenter/sasquatch/MSAAuthenticationProvider.java [148:155]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void handleCallFailure(Exception e) {
        if (e instanceof HttpException) {
            HttpException he = (HttpException) e;
            failSignIn(he.getHttpResponse().getStatusCode(), he.getHttpResponse().getPayload());
        } else {
            failSignIn(0, e.getMessage());
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apps/sasquatch/src/main/java/com/microsoft/appcenter/sasquatch/activities/MSALoginActivity.java [324:331]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void handleCallFailure(Exception e) {
        if (e instanceof HttpException) {
            HttpException he = (HttpException) e;
            failSignIn(he.getHttpResponse().getStatusCode(), he.getHttpResponse().getPayload());
        } else {
            failSignIn(0, e.getMessage());
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



