mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
10 lines
261 B
Dart
10 lines
261 B
Dart
|
|
/// Base class which is used to check if an Exception is a custom exception
|
||
|
|
sealed class ImmichErrors {
|
||
|
|
const ImmichErrors();
|
||
|
|
}
|
||
|
|
|
||
|
|
class NoResponseDtoError extends ImmichErrors implements Exception {
|
||
|
|
@override
|
||
|
|
String toString() => "Response Dto is null";
|
||
|
|
}
|