Akka.Actor.PostRestartException.PostRestartException C# (CSharp) Метод

PostRestartException() публичный Метод

Initializes a new instance of the PostRestartException class.
public PostRestartException ( IActorRef actor, Exception cause, Exception originalCause ) : System
actor IActorRef The actor whose constructor or hook failed.
cause System.Exception The exception thrown by the within .
originalCause System.Exception The original cause is the exception which caused the restart in the first place.
Результат System
        public PostRestartException(IActorRef actor, Exception cause, Exception originalCause)
            :base(actor,"Exception post restart (" + (originalCause == null ?"null" : originalCause.GetType().ToString()) + ")", cause)
        {
            _originalCause = originalCause;
        }

Same methods

PostRestartException::PostRestartException ( SerializationInfo info, StreamingContext context ) : System
PostRestartException