UNPKG

google-photos-migrate

Version:

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

12 lines (11 loc) 321 B
import { MigrationError } from '../MigrationError.js'; export class NoPhotosDirError extends MigrationError { parentDir; constructor(parentDir) { super(); this.parentDir = parentDir; } toString() { return `Failed to find Google Photos directory in dir: ${this.parentDir}`; } }