Partager via


ODataError Constructors

Definition

Overloads

ODataError()

Initializes a new instance of the ODataError class.

ODataError(String, String, IList<ODataError>)

Initializes a new instance of the ODataError class.

ODataError()

Initializes a new instance of the ODataError class.

public ODataError ();
Public Sub New ()

Applies to

ODataError(String, String, IList<ODataError>)

Initializes a new instance of the ODataError class.

public ODataError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataMigration.Models.ODataError> details = default);
new Microsoft.Azure.Management.DataMigration.Models.ODataError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataMigration.Models.ODataError> -> Microsoft.Azure.Management.DataMigration.Models.ODataError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional details As IList(Of ODataError) = Nothing)

Parameters

code
String

The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'

message
String

The human-readable description of the error

details
IList<ODataError>

Inner errors that caused this error

Applies to