Share via


ReportableException Constructors

Definition

Overloads

ReportableException()

Initializes a new instance of the ReportableException class.

ReportableException(String, String, String, String, Nullable<Int32>, String)

Initializes a new instance of the ReportableException class.

ReportableException()

Initializes a new instance of the ReportableException class.

public ReportableException ();
Public Sub New ()

Applies to

ReportableException(String, String, String, String, Nullable<Int32>, String)

Initializes a new instance of the ReportableException class.

public ReportableException (string message = default, string actionableMessage = default, string filePath = default, string lineNumber = default, int? hResult = default, string stackTrace = default);
new Microsoft.Azure.Management.DataMigration.Models.ReportableException : string * string * string * string * Nullable<int> * string -> Microsoft.Azure.Management.DataMigration.Models.ReportableException
Public Sub New (Optional message As String = Nothing, Optional actionableMessage As String = Nothing, Optional filePath As String = Nothing, Optional lineNumber As String = Nothing, Optional hResult As Nullable(Of Integer) = Nothing, Optional stackTrace As String = Nothing)

Parameters

message
String

Error message

actionableMessage
String

Actionable steps for this exception

filePath
String

The path to the file where exception occurred

lineNumber
String

The line number where exception occurred

hResult
Nullable<Int32>

Coded numerical value that is assigned to a specific exception

stackTrace
String

Stack trace

Applies to