Files
workavia-mail-front/lib/features/upload/domain/exceptions/upload_exception.dart
T

9 lines
251 B
Dart

import 'package:core/domain/exceptions/app_base_exception.dart';
class DataResponseIsNullException extends AppBaseException {
DataResponseIsNullException([super.message]);
@override
String get exceptionName => 'DataResponseIsNullException';
}