errors.js 241 B

12345678910
  1. class NotCachedError extends Error {
  2. constructor (url) {
  3. super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`)
  4. this.code = 'ENOTCACHED'
  5. }
  6. }
  7. module.exports = {
  8. NotCachedError,
  9. }