C# Class Akka.Actor.IllegalActorStateException

This exception is thrown when a core invariant in the Actor implementation has been violated. For instance, if you try to create an Actor that doesn't inherit from ActorBase.
Inheritance: AkkaException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
IllegalActorStateException ( string message ) : System

Initializes a new instance of the IllegalActorStateException class.

Protected Methods

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

Initializes a new instance of the IllegalActorStateException class.

Method Details

IllegalActorStateException() protected method

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

IllegalActorStateException() public method

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