focus-flow/packages/scheduler_persistence/lib/persistence/repository_owner_mismatch.dart

7 lines
283 B
Dart

part of '../persistence.dart';
/// The requested record exists under a different owner scope.
final class RepositoryOwnerMismatch extends RepositoryFailure {
/// Creates an owner-mismatch failure for [entityId].
const RepositoryOwnerMismatch({super.entityId, super.message});
}