cb4aa0c45134f23e1c0a59c8a69156947a4da97cffe74ac2d652a54737182b2df98cfbbf8cf9d014bbeb27ceaa7365a20338af1c3633c24d1704ffc54c5f73 284 B

1234567891011
  1. class 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. module.exports = {
  9. NotCachedError,
  10. }