9 lines
272 B
Dart
9 lines
272 B
Dart
import 'package:core/domain/exceptions/app_base_exception.dart';
|
|
|
|
class NotFoundDataWithThisKeyException extends AppBaseException {
|
|
const NotFoundDataWithThisKeyException([super.message]);
|
|
|
|
@override
|
|
String get exceptionName => 'NotFoundDataWithThisKeyException';
|
|
}
|