| PostRestartException Constructor (IActorRef, Exception, Exception) |
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public PostRestartException(
IActorRef actor,
Exception cause,
Exception originalCause
)
new :
actor : IActorRef *
cause : Exception *
originalCause : Exception -> PostRestartException
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