C# Class Akka.Actor.InvalidActorNameException

This exception is thrown when the actor name is invalid.
Inheritance: AkkaException
Afficher le fichier Open project: rogeralsing/akka.net

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
InvalidActorNameException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the InvalidActorNameException class.

Method Details

InvalidActorNameException() protected méthode

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.
Résultat System

InvalidActorNameException() public méthode

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

InvalidActorNameException() public méthode

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.
Résultat System