f7ba168d7a
(cherry picked from commit 606ae303f92e711ffd0dbd8975a19c8fa02eb022)
10 lines
247 B
Dart
10 lines
247 B
Dart
|
|
import 'package:jmap_dart_client/jmap/core/error/set_error.dart';
|
|
import 'package:jmap_dart_client/jmap/core/id.dart';
|
|
|
|
class SetMethodException implements Exception {
|
|
|
|
final Map<Id, SetError> mapErrors;
|
|
|
|
SetMethodException(this.mapErrors);
|
|
} |