C# Class NuxeoClient.FailedToUploadException

The exception that is thrown when the uploader fails to upload a file to the Nuxeo server.
Inheritance: System.Exception
Show file Open project: nuxeo/nuxeo-dotnet-client

Public Methods

Method Description
FailedToUploadException ( ) : System

Initializes a new instance of FailedToUploadException with an empty message.

FailedToUploadException ( string message ) : System

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

FailedToUploadException ( string message, Exception inner ) : System

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

Method Details

FailedToUploadException() public method

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

FailedToUploadException() public method

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

FailedToUploadException() public method

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