source:
trip-planner-front/node_modules/make-fetch-happen/lib/cache/errors.js
Last change on this file was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 241 bytes |
Line | |
---|---|
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 | |
8 | module.exports = { |
9 | NotCachedError, |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.