MissingObjectException Constructors

Definition

Overloads

MissingObjectException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

MissingObjectException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

MissingObjectException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

MissingObjectException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

public MissingObjectException ();
Public Sub New ()

Applies to

MissingObjectException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

public MissingObjectException (string message);
new Microsoft.SqlServer.Management.Smo.MissingObjectException : string -> Microsoft.SqlServer.Management.Smo.MissingObjectException
Public Sub New (message As String)

Parameters

message
String

The message of the exception.

Applies to

MissingObjectException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.MissingObjectException.

public MissingObjectException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.MissingObjectException : string * Exception -> Microsoft.SqlServer.Management.Smo.MissingObjectException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message of the exception as string.

innerException
Exception

The T:System.Exception instance that caused the current exception.

Applies to