Find why this method can report a missing customer when the real failure is unrelated.
csharp
public async Task<Customer?> FindCustomerAsync(
string id, CancellationToken token)
{
try
{
return await _store.FindAsync(id, token);
}
catch (Exception)
{
return null;
}
}