birbmap/Birdmap.API/ClientApp/src/common/ErrorDispatcher.ts
2020-10-25 16:56:44 +01:00

14 lines
310 B
TypeScript

const ErrorDispatcher = {
errorHandlers: [],
registerErrorHandler(errorHandlerFn) {
this.errorHandlers.push(errorHandlerFn);
},
raiseError(errorMessage) {
for (let i = 0; i < this.errorHandlers.length; i++)
this.errorHandlers[i](errorMessage);
}
};
export default ErrorDispatcher;