mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 16:41:59 +00:00
c1253663b7
* refactor(mobile): services and provider * providers
5 lines
186 B
Dart
5 lines
186 B
Dart
/// An exception for the [ImageLoader] and the Immich image providers
|
|
class ImageLoadingException implements Exception {
|
|
final String message;
|
|
ImageLoadingException(this.message);
|
|
}
|