← Back to Posts

angular.js exception handler

👤 علی ذوالفقار 📅 1400/12/22 07:56:17 👁️ 552 views
angular.module("app")
.factory("$exceptionHandler",  function() {
        return function (exception, cause) {
            //exception handling here
        };
    });
← Back to Posts