Click or drag to resize
Akka.NETPostRestartException Constructor (IActorRef, Exception, Exception)
Initializes a new instance of the PostRestartException class.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public PostRestartException(
	IActorRef actor,
	Exception cause,
	Exception originalCause
)

Parameters

actor
Type: Akka.ActorIActorRef
The actor whose constructor or PostRestart(Exception) hook failed.
cause
Type: SystemException
The exception thrown by the actor within PostRestart(Exception).
originalCause
Type: SystemException
The original cause is the exception which caused the restart in the first place.
See Also