* @ngdoc service * @name $exceptionHandler * @requires ng.$log * * @description * Any uncaught exception in angular expressions is delegated to this service. * The default implementation simply delegates to `$log.error` which logs it into * the browser console. * * In unit tests, if `angula
()
| 7322 | * |
| 7323 | */ |
| 7324 | function $ExceptionHandlerProvider() { |
| 7325 | this.$get = ['$log', function($log) { |
| 7326 | return function(exception, cause) { |
| 7327 | $log.error.apply($log, arguments); |
| 7328 | }; |
| 7329 | }]; |
| 7330 | } |
| 7331 | |
| 7332 | /** |
| 7333 | * Parse headers into key value object |
nothing calls this directly
no outgoing calls
no test coverage detected