C# Class Akka.Actor.IllegalActorNameException

This exception is thrown when an Actor with an invalid name is deployed.
Inheritance: AkkaException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
IllegalActorNameException ( string message ) : System

Initializes a new instance of the IllegalActorNameException class.

Protected Methods

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

Initializes a new instance of the IllegalActorNameException class.

Method Details

IllegalActorNameException() protected method

Initializes a new instance of the IllegalActorNameException class.
protected IllegalActorNameException ( 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

IllegalActorNameException() public method

Initializes a new instance of the IllegalActorNameException class.
public IllegalActorNameException ( string message ) : System
message string The message that describes the error.
return System