blob: aa75d38f49421ddbd3dcaeef154f399609639846 [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.UITutorial')
.service('ErrorHandler', function(TemplateHandler){
this.print = (msg, done) => {
done(TemplateHandler.error({msg: msg}));
};
});
})();