Click or drag to resize

RpcRemoteException(String, String, Exception) Constructor

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

Namespace: Ookii.Jumbo.Rpc
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public RpcRemoteException(
	string? message,
	string originalExceptionType,
	Exception inner
)

Parameters

message  String
The error message that explains the reason for the RpcRemoteException.
originalExceptionType  String
The full type name of the exception that was thrown by the remote server.
inner  Exception
The RpcRemoteException that is the cause of the current RpcRemoteException, or a if no inner RpcRemoteException is specified.
See Also