TF-3189 new option to copy a folder's subaddress
This commit is contained in:
committed by
Dat H. Pham
parent
89d80fe142
commit
f1ec1d7324
@@ -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';
|
||||
}
|
||||
Reference in New Issue
Block a user