C# Class Akka.Actor.ActorNotFoundException

This exception is thrown when an Actor can not be found.
Inheritance: AkkaException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
ActorNotFoundException ( ) : System

Initializes a new instance of the ActorNotFoundException class.

ActorNotFoundException ( string message, Exception innerException = null ) : System

ActorNotFoundException that takes a descriptive message and optional innerException.

Protected Methods

Method Description
ActorNotFoundException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ActorNotFoundException class.

Method Details

ActorNotFoundException() public method

Initializes a new instance of the ActorNotFoundException class.
public ActorNotFoundException ( ) : System
return System

ActorNotFoundException() protected method

Initializes a new instance of the ActorNotFoundException class.
protected ActorNotFoundException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

ActorNotFoundException() public method

ActorNotFoundException that takes a descriptive message and optional innerException.
public ActorNotFoundException ( string message, Exception innerException = null ) : System
message string A user-defined error message.
innerException System.Exception An inner .
return System