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