• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1class NotCachedError extends Error {
2  constructor (url) {
3    /* eslint-disable-next-line max-len */
4    super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`)
5    this.code = 'ENOTCACHED'
6  }
7}
8
9module.exports = {
10  NotCachedError,
11}
12