7 lines
283 B
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});
|
|
}
|