Files
workavia-mail-front/lib/features/labels/domain/exceptions/label_exceptions.dart
T
2026-01-26 09:13:54 +07:00

10 lines
211 B
Dart

class LabelKeywordIsNull implements Exception {
@override
String toString() => 'Label keyword is null';
}
class LabelIdIsNull implements Exception {
@override
String toString() => 'Label id is null';
}