TF-3189 new option to copy a folder's subaddress

This commit is contained in:
Florent Azavant
2024-11-29 14:29:59 +01:00
committed by Dat H. Pham
parent 89d80fe142
commit f1ec1d7324
12 changed files with 181 additions and 7 deletions
@@ -0,0 +1,9 @@
class EmptyFolderNameException implements Exception {
final String folderName;
EmptyFolderNameException(this.folderName);
@override
String toString() => 'EmptyFolderNameException: Folder name should not be empty: $folderName';
}
@@ -0,0 +1,9 @@
class InvalidMailFormatException implements Exception {
final String mail;
InvalidMailFormatException(this.mail);
@override
String toString() => 'InvalidMailFormatException: $mail';
}