C# Class NuxeoClient.FailedHandshakeException

The exception that is thrown when the handshake between the Nuxeo client and the server fails. The handshake is performed whenever a new batch is requested from the server.
Inheritance: System.Exception
Show file Open project: nuxeo/nuxeo-dotnet-client

Public Methods

Method Description
FailedHandshakeException ( ) : System

Initializes a new instance of FailedHandshakeException with an empty message.

FailedHandshakeException ( string message ) : System

Initializes a new instance of FailedHandshakeException with its message string set to message.

FailedHandshakeException ( string message, Exception inner ) : System

Initializes a new instance of FailedHandshakeException with its message string set to message and with its inner exceptio set to inner

Method Details

FailedHandshakeException() public method

Initializes a new instance of FailedHandshakeException with an empty message.
public FailedHandshakeException ( ) : System
return System

FailedHandshakeException() public method

Initializes a new instance of FailedHandshakeException with its message string set to message.
public FailedHandshakeException ( string message ) : System
message string The exception message.
return System

FailedHandshakeException() public method

Initializes a new instance of FailedHandshakeException with its message string set to message and with its inner exceptio set to inner
public FailedHandshakeException ( string message, Exception inner ) : System
message string The exception message.
inner System.Exception The inner excepiton.
return System