You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did a quick look at the source and I found at least one exception throwing problem.
First I am not a JVM guy but with the little research I did I found out that the JVM and .NET handle the throwing and rethrowing of exceptions opposite of each other.
private void HandleFailed(Failed f) //Called handleFailure in Akka JVM
{
if (statsUid == f.Uid)
{
var handled = _actor.SupervisorStrategyInternal.HandleFailure(this, f.Cause, childStats, ChildrenContainer.Stats);
if (!handled)
throw f.Cause; // This is probably at least one of the culprits
}
}
You probably want to look into ExceptionDispatchInfo.Capture(...).Throw() as it maintains the stack trace
The text was updated successfully, but these errors were encountered:
I did a quick look at the source and I found at least one exception throwing problem.
First I am not a JVM guy but with the little research I did I found out that the JVM and .NET handle the throwing and rethrowing of exceptions opposite of each other.
http://www.tkachenko.com/blog/archives/000352.html
You probably want to look into ExceptionDispatchInfo.Capture(...).Throw() as it maintains the stack trace
The text was updated successfully, but these errors were encountered: