using System; using System.Runtime.ExceptionServices; namespace OpenVIII { public static class ExceptionExtensionMethods { public static T Rethrow(this T exception) where T : Exception { ExceptionDispatchInfo.Capture(exception).Throw(); throw exception; } } }