Removed superfluous try catch throw pattern

This commit is contained in:
2021-08-05 23:14:12 +00:00
parent 7c033a6e84
commit 49bd0d2d87
35 changed files with 2184 additions and 2684 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -34,8 +34,7 @@ namespace AyaNova.Util
await task.ConfigureAwait(false);
}
catch (Exception ex)
{
// TODO: consider whether derived types are also acceptable.
{
if (!acceptableExceptions.Contains(ex.GetType()))
throw;
}