immich/mobile/lib/providers/image/exceptions/image_loading_exception.dart

6 lines
192 B
Dart
Raw Permalink Normal View History

2026-02-02 15:06:40 +01:00
/// An exception for the [ImageLoader] and the Immich image providers
class ImageLoadingException implements Exception {
final String message;
const ImageLoadingException(this.message);
}