C# Класс Akka.Actor.ActorNotFoundException

This exception is thrown when an Actor can not be found.
Наследование: AkkaException
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
ActorNotFoundException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ActorNotFoundException class.

Описание методов

ActorNotFoundException() публичный Метод

Initializes a new instance of the ActorNotFoundException class.
public ActorNotFoundException ( ) : System
Результат System

ActorNotFoundException() защищенный Метод

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.
Результат System

ActorNotFoundException() публичный Метод

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 .
Результат System