TF-4392 [Team Mailbox] Move email to trash on delete in Email List View

This commit is contained in:
dab246
2026-03-26 13:09:17 +07:00
committed by Dat H. Pham
parent 865940450e
commit db8ae35c9d
9 changed files with 656 additions and 18 deletions
@@ -27,3 +27,17 @@ class CannotMoveAllEmailException extends AppBaseException {
@override
String get exceptionName => 'CannotMoveAllEmailException';
}
class NotFoundMailboxOfEmailException extends AppBaseException {
NotFoundMailboxOfEmailException([super.message]);
@override
String get exceptionName => 'NotFoundMailboxOfEmailException';
}
class NotFoundTrashMailboxException extends AppBaseException {
NotFoundTrashMailboxException([super.message]);
@override
String get exceptionName => 'NotFoundTrashMailboxException';
}