$exceptionHandler
$log.error varsayılan uygulamayı basitçe derleyip konsola kaydeder.
Kullanım Şekli
angular.module('exceptionOverride', []).factory('$exceptionHandler', function() {
  return function(exception, cause) {
    exception.message += ' (caused by "' + cause + '")';
    throw exception;
  };
});