UNPKG

ipull

Version:

The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.

9 lines 303 B
import FetchStreamError from "./fetch-stream-error.js"; export default class EmptyResponseError extends FetchStreamError { headers; constructor(url, headers) { super("Empty response error: " + url); this.headers = headers; } } //# sourceMappingURL=empty-response-error.js.map