google-photos-migrate
Version:
A tool to fix EXIF data and recover filenames from a Google Photos takeout.
16 lines (15 loc) • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoPhotosDirError = void 0;
const MigrationError_1 = require("../MigrationError");
class NoPhotosDirError extends MigrationError_1.MigrationError {
parentDir;
constructor(parentDir) {
super();
this.parentDir = parentDir;
}
toString() {
return `Failed to find Google Photos directory in dir: ${this.parentDir}`;
}
}
exports.NoPhotosDirError = NoPhotosDirError;