apps/sasquatch/src/main/java/com/microsoft/appcenter/sasquatch/MSAAuthenticationProvider.java [142:153]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        handleCallFailure(e);
                    }
                });

    }

    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 [319:329]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        handleCallFailure(e);
                    }
                });
    }

    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());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



