C# Class Ipfs.Api.IpfsException

Inheritance: System.Exception
Afficher le fichier Open project: richardschneider/net-ipfs-api

Méthodes publiques

Méthode Description
IpfsException ( ) : System

Initializes a new instance of the IpfsException class.

This constructor initializes the Exception.Message property of the new instance to a system-supplied message that describes the error and takes into account the current system culture.

IpfsException ( Exception innerException ) : System

Initializes a new instance of the IpfsException class with a specified inner Exception.

IpfsException ( string message ) : System

Initializes a new instance of the IpfsException class with a specified error message.

This constructor initializes the Exception.Message property of the new instance to the message parameter.

IpfsException ( string message, Exception innerException ) : System

Initializes a new instance of the IpfsException class with a specified error message and inner Exception.

Méthodes protégées

Méthode Description
IpfsException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the IpfsException class with serialized data.

This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.

Method Details

IpfsException() public méthode

Initializes a new instance of the IpfsException class.
This constructor initializes the Exception.Message property of the new instance to a system-supplied message that describes the error and takes into account the current system culture.
public IpfsException ( ) : System
Résultat System

IpfsException() public méthode

Initializes a new instance of the IpfsException class with a specified inner Exception.
public IpfsException ( Exception innerException ) : System
innerException System.Exception /// The that is the cause of the current exception. ///
Résultat System

IpfsException() protected méthode

Initializes a new instance of the IpfsException class with serialized data.
This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.
protected IpfsException ( 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. ///
Résultat System

IpfsException() public méthode

Initializes a new instance of the IpfsException class with a specified error message.
This constructor initializes the Exception.Message property of the new instance to the message parameter.
public IpfsException ( string message ) : System
message string /// The error message that explains the reason for the exception. ///
Résultat System

IpfsException() public méthode

Initializes a new instance of the IpfsException class with a specified error message and inner Exception.
public IpfsException ( string message, Exception innerException ) : System
message string /// The error message that explains the reason for the exception. ///
innerException System.Exception /// The that is the cause of the current exception. ///
Résultat System