| ActorInitializationException Constructor (IActorRef, String, Exception) |
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public ActorInitializationException(
IActorRef actor,
string message,
Exception cause = null
)
new :
actor : IActorRef *
message : string *
?cause : Exception
(* Defaults:
let _cause = defaultArg cause null
*)
-> ActorInitializationException
Parameters
- actor
- Type: Akka.ActorIActorRef
The actor whose initialization logic failed. - message
- Type: SystemString
The message that describes the error. - cause (Optional)
- Type: SystemException
The exception that is the cause of the current exception.
See Also