C# Class Akka.Actor.InvalidActorNameException

This exception is thrown when the actor name is invalid.
Inheritance: AkkaException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
InvalidActorNameException ( string message ) : System

Initializes a new instance of the InvalidActorNameException class.

InvalidActorNameException ( string message, Exception innerException ) : System

Initializes a new instance of the InvalidActorNameException class.

Protected Methods

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

Initializes a new instance of the InvalidActorNameException class.

Method Details

InvalidActorNameException() protected method

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

InvalidActorNameException() public method

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

InvalidActorNameException() public method

Initializes a new instance of the InvalidActorNameException class.
public InvalidActorNameException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException System.Exception The exception that is the cause of the current exception.
return System