Share via


FunctionInputConverterException Constructors

Definition

Overloads

FunctionInputConverterException(String)

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

FunctionInputConverterException(String, Exception)

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

FunctionInputConverterException(String)

Source:
FunctionInputConverterException.cs

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

public FunctionInputConverterException (string? message);
new Microsoft.Azure.Functions.Worker.FunctionInputConverterException : string -> Microsoft.Azure.Functions.Worker.FunctionInputConverterException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

FunctionInputConverterException(String, Exception)

Source:
FunctionInputConverterException.cs

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

public FunctionInputConverterException (string? message, Exception? innerException);
new Microsoft.Azure.Functions.Worker.FunctionInputConverterException : string * Exception -> Microsoft.Azure.Functions.Worker.FunctionInputConverterException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message that describes the error.

innerException
Exception

The exception that is the cause of the current exception or a null reference if no inner exception is specified..

Applies to