Click or drag to resize
PostRestartException Constructor
Initializes a new instance of the PostRestartException class.

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

Parameters

actor
Type: Akka.ActorActorRef
The actor whose constructor or postRestart() hook failed.
cause
Type: SystemException
Cause is the exception thrown by that actor within preRestart().
originalCause
Type: SystemException
The original causeis the exception which caused the restart in the first place.
See Also