Skip to content

Instantly share code, notes, and snippets.

View caiyichen's full-sized avatar

一棵菜菜 caiyichen

  • 四川成都
View GitHub Profile
@loicknuchel
loicknuchel / angularError.js
Last active March 9, 2017 17:37
Error handling in angular
angular.module('app', [])
.config(function($provide, debug){
// catch exceptions in angular
$provide.decorator('$exceptionHandler', ['$delegate', function($delegate){
return function(exception, cause){
$delegate(exception, cause);
var data = {
type: 'angular',