├── .angulardoc.json ├── .gitignore ├── README.md ├── angular.json ├── package.json ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── global-error-handler.ts │ ├── server-error.interceptor.ts │ └── services │ │ ├── error.service.ts │ │ ├── logging.service.ts │ │ └── notification.service.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── tsconfig.app.json └── tsconfig.json /.angulardoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/.angulardoc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/global-error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/global-error-handler.ts -------------------------------------------------------------------------------- /src/app/server-error.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/server-error.interceptor.ts -------------------------------------------------------------------------------- /src/app/services/error.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/services/error.service.ts -------------------------------------------------------------------------------- /src/app/services/logging.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/services/logging.service.ts -------------------------------------------------------------------------------- /src/app/services/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/app/services/notification.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melcor76/global-error-handling/HEAD/tsconfig.json --------------------------------------------------------------------------------