Removed explicit exception re-throw to prevent warning

pull/180/head
dahall 2020-11-14 10:11:47 -07:00
parent 420296f0ab
commit ab4f3c5bd2
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ namespace Vanara.InteropServices
}
catch (ArgumentOutOfRangeException e)
{
throw e;
throw;
}
catch { }
throw new NotSupportedException("Unsupported type parameter.");