System.Runtime.ExceptionServices.ExceptionDispatchInfo
namespace System.Runtime.ExceptionServices
{
public sealed class ExceptionDispatchInfo
{
public Exception SourceException { get; }
public static ExceptionDispatchInfo Capture(Exception source);
public void Throw();
}
}