ExceptionServicesImpl
using System.Runtime.ExceptionServices;
namespace System.Reactive.PlatformServices
{
internal class ExceptionServicesImpl : IExceptionServices
{
public void Rethrow(Exception exception)
{
ExceptionDispatchInfo.Capture(exception).Throw();
}
}
}