UNPKG

google-photos-migrate

Version:

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

9 lines (8 loc) 226 B
import { MigrationError } from '../MigrationError.js'; export class MediaMigrationError extends MigrationError { failedMedia; constructor(failedMedia) { super(); this.failedMedia = failedMedia; } }