UNPKG

306 BJavaScriptView Raw
1class NetworkError extends Error {
2 constructor (error, xhr = null) {
3 super(`This looks like a network error, the endpoint might be blocked by an internet provider or a firewall.\n\nSource error: [${error}]`)
4
5 this.isNetworkError = true
6 this.request = xhr
7 }
8}
9
10module.exports = NetworkError