(function () { "use strict"; angular.module("enrServicesModule") .factory("errorHandler", ["$window", function ($window) { return { handleError: function (errorMsg) { $window.location.href = "error.html"; } }; }]); }());