1 2 3 4 5 6 7
'use strict'; module.exports = class HotClientError extends Error { constructor(message) { super(`webpack-hot-client: ${message}`); } };