backend/lib/node/node_modules/make-fetch-happen/lib/cache/errors.js
2024-10-26 17:26:06 +02:00

10 lines
241 B
JavaScript

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,
}