node-ejs-renderer/node_modules/make-fetch-happen/lib/cache/errors.js

11 lines
241 B
JavaScript
Raw Permalink Normal View History

2024-06-09 13:55:01 -04:00
class NotCachedError extends Error {
constructor (url) {
super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`)
this.code = 'ENOTCACHED'
}
}
module.exports = {
NotCachedError,
}