This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Errors during bootstrap SILENCED #1018
Closed
Description
Errors during instantiation should be delegated to $exceptionHandler, errors during config phase should be probably just rethrown.
angular.module('app', [], function() {
throw new Error('SILENCE');
}).controller('ErrorCtrl', function(err) {
throw new Error('AGAIN SILENCE');
}).factory('err', function() {
throw new Error('IGNORED AS WELL');
});