Is it possible to implement a "responseError" interceptor for $http service that would trigger only if there is no specific failure handler defined elsewhere for the given http promise?
So that in case of an error in the response, the following expression $http.get(...).success(...) will execute some code in the interceptor, while the following one $http.get(...).success(...).error(...) won't.