##// END OF EJS Templates
Fixed promise rejection when there is not specified error handler in the reaction....
Fixed promise rejection when there is not specified error handler in the reaction. FIXED SPELLING IN THE XML CONTAINER CONFIGURATION signleton->singleton Code cleanup Update tests make them working on dotnet core

File last commit:

r289:95896f882995 v3.0.14 v3
r295:28af686e24f7 default
Show More
ExceptionHelpers.cs
20 lines | 700 B | text/x-csharp | CSharpLexer
/ Implab / src / ExceptionHelpers.cs
using System;
using System.Reflection;
using System.Runtime.ExceptionServices;
namespace Implab {
static class ExceptionHelpers {
public static Exception Rethrow(this Exception that) {
ExceptionDispatchInfo.Capture(that).Throw();
return new TargetInvocationException(that);
}
public static Exception Wrap(this Exception that) {
if (that == null)
return new Exception();
else if (that is OperationCanceledException)
return new OperationCanceledException("The operation has been cancelled", that);
else
return new TargetInvocationException(that);
}
}
}