JiriChara/redux-blower

View on GitHub
src/errors/NoListenToGiven.js

Summary

Maintainability
A
0 mins
Test Coverage
export function NoListenToGiven(msg) {
  this.name = 'NoListenToGiven';
  this.message = msg || 'Reducer must listen to something.';
}
NoListenToGiven.prototype = Error.prototype;