export class MediaNotFoundError extends Error { constructor(message = "Media not found", options?: ErrorOptions) { super(message, options); this.name = "MediaNotFoundError"; } }