I can't do this in C#:
catch (Exception exception)
{
var wrappedException = new TException(exception);
}
Getting error "cannot provide arguments when creating an instance of type parameter 'TException'. Just wanted to check with the community to see if there is any way to do something like this?