angular.js exception handler

علی ذوالفقار
1400/12/22 07:56:17 (397)
angular.module("app")
.factory("$exceptionHandler",  function() {
        return function (exception, cause) {
            //exception handling here
        };
    });
Back