Obsługa błędów w AngularJS http get następnie skonstruuj

Jak mogę obsłużyć błąd HTTP, np. 500, gdy używasz konstrukcji „http get then AngularJS” (obietnice)?

$http.get(url).then(
    function(response) {
        console.log('get',response)
    }
)

Problem polega na tym, że dla każdej odpowiedzi innej niż 200 HTTP wewnętrzna funkcja nie jest wywoływana.

questionAnswers(5)

yourAnswerToTheQuestion