7 lines
244 B
Dart
7 lines
244 B
Dart
part of '../persistence.dart';
|
|
|
|
/// The requested entity was not found.
|
|
final class RepositoryNotFound extends RepositoryFailure {
|
|
/// Creates a not-found failure for [entityId].
|
|
const RepositoryNotFound({super.entityId, super.message});
|
|
}
|