mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02: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";
|
||
|
}
|