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.

7 lines 267 B
import EngineError from "./engine-error.js"; export default class InvalidContentLengthError extends EngineError { constructor(url) { super(`Invalid content length, for request URL: ${url}`); } } //# sourceMappingURL=invalid-content-length-error.js.map