mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* enable border radius, switch exp, const constructor * regenerate provider * more formatting --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
5 lines
192 B
Dart
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);
|
|
}
|