gphotos-scraper
Version:
A tool to extract public url and metadata from shared album
15 lines • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WrongFileExtException = void 0;
class WrongFileExtException extends Error {
constructor(message, code) {
super();
this.code = "401";
this.message = "Wrong file extension";
if (code)
this.code = code;
this.message = message;
}
}
exports.WrongFileExtException = WrongFileExtException;
//# sourceMappingURL=wrong-file-ext-exception.js.map