Update .bashrc
[dotfiles/.git] / util / TimeoutError.js
1 "use strict";
2 Object.defineProperty(exports, "__esModule", { value: true });
3 var TimeoutErrorImpl = (function () {
4     function TimeoutErrorImpl() {
5         Error.call(this);
6         this.message = 'Timeout has occurred';
7         this.name = 'TimeoutError';
8         return this;
9     }
10     TimeoutErrorImpl.prototype = Object.create(Error.prototype);
11     return TimeoutErrorImpl;
12 })();
13 exports.TimeoutError = TimeoutErrorImpl;
14 //# sourceMappingURL=TimeoutError.js.map