9 lines
251 B
Dart
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';
|
|
}
|