JiriChara/krtek

View on GitHub
src/errors/WriteCacheError.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function WriteCacheError(message) {
  this.name = 'WriteCacheError';
  this.message = message;
}

WriteCacheError.prototype = Error.prototype;