Akka.Actor.ActorCell.HandleNonFatalOrInterruptedException C# (CSharp) Method

HandleNonFatalOrInterruptedException() private method

Handles the non fatal or interrupted exception.
private HandleNonFatalOrInterruptedException ( System.Action action ) : void
action System.Action The action.
return void
        private void HandleNonFatalOrInterruptedException(Action action)
        {
            try
            {
                action();
            }
            catch
            {
                //TODO: Hmmm?
            }
        }
    }