Class ActorNotFoundException
This exception is thrown when an Actor can not be found.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class ActorNotFoundException : AkkaException, ISerializable
Constructors
| Improve this Doc View SourceActorNotFoundException()
Initializes a new instance of the ActorNotFoundException class.
Declaration
public ActorNotFoundException()
ActorNotFoundException(SerializationInfo, StreamingContext)
Initializes a new instance of the ActorNotFoundException class.
Declaration
protected ActorNotFoundException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The SerializationInfo that holds the serialized object data about the exception being thrown. |
StreamingContext | context | The StreamingContext that contains contextual information about the source or destination. |
ActorNotFoundException(String, Exception)
ActorNotFoundException that takes a descriptive message
and optional innerException
.
Declaration
public ActorNotFoundException(string message, Exception innerException = null)
Parameters
Type | Name | Description |
---|---|---|
String | message | A user-defined error message. |
Exception | innerException | An inner Exception. |