reelflow
Version:
Elegant and powerful Instagram video downloader for seamless content extraction
13 lines (12 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InstagramError = void 0;
class InstagramError extends Error {
status;
constructor(message, status = 500) {
super(message);
this.status = status;
this.name = 'InstagramError';
}
}
exports.InstagramError = InstagramError;