You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
363 B
17 lines
363 B
|
2 years ago
|
"use strict";
|
||
|
|
|
||
|
|
class NetworkError extends Error {
|
||
|
|
constructor(error, xhr) {
|
||
|
|
if (xhr === void 0) {
|
||
|
|
xhr = null;
|
||
|
|
}
|
||
|
|
|
||
|
|
super(`This looks like a network error, the endpoint might be blocked by an internet provider or a firewall.`);
|
||
|
|
this.cause = error;
|
||
|
|
this.isNetworkError = true;
|
||
|
|
this.request = xhr;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = NetworkError;
|