source: trip-planner-front/node_modules/make-fetch-happen/lib/cache/errors.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 241 bytes
Line 
1class 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
8module.exports = {
9 NotCachedError,
10}
Note: See TracBrowser for help on using the repository browser.