UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

11 lines (10 loc) 399 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NoMetaFileError = void 0; const MediaMigrationError_1 = require("../media/MediaMigrationError"); class NoMetaFileError extends MediaMigrationError_1.MediaMigrationError { toString() { return `Unable to locate meta file for: ${this.failedMedia.path}`; } } exports.NoMetaFileError = NoMetaFileError;