blob: 90b79ca70fbf6a6e712ad2b5a40c93567591561e [file] [log] [blame]
const TimeoutErrorImpl = (() => {
function TimeoutErrorImpl() {
Error.call(this);
this.message = 'Timeout has occurred';
this.name = 'TimeoutError';
return this;
}
TimeoutErrorImpl.prototype = Object.create(Error.prototype);
return TimeoutErrorImpl;
})();
export const TimeoutError = TimeoutErrorImpl;
//# sourceMappingURL=TimeoutError.js.map