C# Class Dapr.Actors.ActorMethodInvocationException

Inheritance: DaprApiException
Show file Open project: dapr/dotnet-sdk

Public Methods

Method Description
ActorMethodInvocationException ( ) : System

Initializes a new instance of the ActorMethodInvocationException class.

ActorMethodInvocationException ( string message, Exception innerException, bool isTransient ) : System

Initializes a new instance of the ActorMethodInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ActorMethodInvocationException ( string message, bool isTransient ) : System

Initializes a new instance of the ActorMethodInvocationException class.

Method Details

ActorMethodInvocationException() public method

Initializes a new instance of the ActorMethodInvocationException class.
public ActorMethodInvocationException ( ) : System
return System

ActorMethodInvocationException() public method

Initializes a new instance of the ActorMethodInvocationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ActorMethodInvocationException ( string message, Exception innerException, bool isTransient ) : System
message string The error message that explains the reason for the exception.
innerException Exception The exception that is the cause of the current exception.
isTransient bool True, if the exception is to be treated as an transient exception.
return System

ActorMethodInvocationException() public method

Initializes a new instance of the ActorMethodInvocationException class.
public ActorMethodInvocationException ( string message, bool isTransient ) : System
message string The error message that explains the reason for the exception.
isTransient bool True, if the exception is to be treated as an transient exception.
return System