immich/mobile/lib/providers/image/exceptions/image_loading_exception.dart
2026-02-02 15:06:40 +01:00

5 lines
192 B
Dart

/// An exception for the [ImageLoader] and the Immich image providers
class ImageLoadingException implements Exception {
final String message;
const ImageLoadingException(this.message);
}