mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
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);
|
|
}
|