focus-flow/packages/scheduler_persistence/lib/persistence/repository_not_found.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});
}