aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack-hot-client/lib/HotClientError.js
blob: 4885e528a8ef3f72407cf2fb05f20a07ec2ee55a (plain)
1
2
3
4
5
6
7
'use strict';

module.exports = class HotClientError extends Error {
  constructor(message) {
    super(`webpack-hot-client: ${message}`);
  }
};