mh_frame_sps/APT.Infrastructure.Api/Model/NeedRetryExceptions.cs
2026-04-07 13:47:52 +08:00

19 lines
385 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Infrastructure.Api.Model
{
public static class NeedRetryExceptions
{
public static List<string> RetryExceptions()
{
return new List<string>()
{
"transient failure",
"EntityFrameworkCore"
};
}
}
}