TF-1190 Handle SetError when send message

This commit is contained in:
dab246
2023-02-03 11:03:57 +07:00
committed by Dat Vu
parent 4e576c346b
commit f41baf5250
12 changed files with 154 additions and 40 deletions
@@ -1,4 +0,0 @@
class NotFoundOutboxMailboxException implements Exception {
NotFoundOutboxMailboxException();
}
@@ -0,0 +1,10 @@
import 'package:jmap_dart_client/jmap/core/error/set_error.dart';
import 'package:jmap_dart_client/jmap/core/id.dart';
class SetEmailMethodException implements Exception {
final Map<Id, SetError> mapErrors;
SetEmailMethodException(this.mapErrors);
}