TF-3416 Implement parse email by blob id interactor
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import 'package:jmap_dart_client/jmap/core/id.dart';
|
||||
|
||||
class NotFoundEmailException implements Exception {}
|
||||
|
||||
class NotFoundEmailContentException implements Exception {}
|
||||
@@ -8,4 +10,16 @@ class NotFoundEmailRecoveryActionException implements Exception {}
|
||||
|
||||
class NotFoundEmailBlobIdException implements Exception {}
|
||||
|
||||
class CannotCreateEmailObjectException implements Exception {}
|
||||
class CannotCreateEmailObjectException implements Exception {}
|
||||
|
||||
class NotFoundBlobIdException implements Exception {
|
||||
final List<Id> ids;
|
||||
|
||||
NotFoundBlobIdException(this.ids);
|
||||
}
|
||||
|
||||
class NotParsableBlobIdToEmailException implements Exception {
|
||||
final List<Id>? ids;
|
||||
|
||||
NotParsableBlobIdToEmailException({this.ids});
|
||||
}
|
||||
Reference in New Issue
Block a user