DomainDataNotFoundException Constructors

Definition

Overloads

DomainDataNotFoundException()

Initializes a new instance of the DomainDataNotFoundException class.

DomainDataNotFoundException(String)

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

DomainDataNotFoundException(String, Exception)

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

DomainDataNotFoundException()

Initializes a new instance of the DomainDataNotFoundException class.

public:
 DomainDataNotFoundException();
public DomainDataNotFoundException ();
Public Sub New ()

Applies to

DomainDataNotFoundException(String)

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

public:
 DomainDataNotFoundException(System::String ^ message);
public DomainDataNotFoundException (string message);
new Microsoft.VisualStudio.Modeling.DomainDataNotFoundException : string -> Microsoft.VisualStudio.Modeling.DomainDataNotFoundException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

DomainDataNotFoundException(String, Exception)

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

public:
 DomainDataNotFoundException(System::String ^ message, Exception ^ innerException);
public DomainDataNotFoundException (string message, Exception innerException);
new Microsoft.VisualStudio.Modeling.DomainDataNotFoundException : string * Exception -> Microsoft.VisualStudio.Modeling.DomainDataNotFoundException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

Applies to