IExceptionServices
(Infrastructure) Services to rethrow exceptions.
using System.ComponentModel;
namespace System.Reactive.PlatformServices
{
[EditorBrowsable(EditorBrowsableState.Never)]
public interface IExceptionServices
{
void Rethrow(Exception exception);
}
}