mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
11 lines
241 B
JavaScript
11 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,
|
|
}
|