We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Mailbox/clear
1 parent 731864b commit 0d8c630Copy full SHA for 0d8c630
lib/jmap/core/error/set_error.dart
@@ -17,6 +17,7 @@ class SetError with EquatableMixin {
17
static final invalidProperties = ErrorType("invalidProperties");
18
static final invalidArguments = ErrorType("invalidArguments");
19
static final singleton = ErrorType("singleton");
20
+ static final serverFail = ErrorType("serverFail");
21
22
final ErrorType type;
23
final String? description;
@@ -40,5 +41,6 @@ class SetError with EquatableMixin {
40
41
SetError.willDestroy,
42
SetError.invalidProperties,
43
SetError.singleton,
44
+ SetError.serverFail,
45
};
46
}
0 commit comments