BuildFailedException Constructors

Definition

Overloads

BuildFailedException(String)

Constructs a BuildFailedException with a string exception message

BuildFailedException(String, Exception)

Constructs a BuildFailedException with a string exception message and an inner Exception providing more information about the failure

BuildFailedException(String)

Constructs a BuildFailedException with a string exception message

public BuildFailedException (string message);
new Microsoft.SqlServer.Dac.Deployment.BuildFailedException : string -> Microsoft.SqlServer.Dac.Deployment.BuildFailedException
Public Sub New (message As String)

Parameters

message
String

string describing the cause of the failure

Applies to

BuildFailedException(String, Exception)

Constructs a BuildFailedException with a string exception message and an inner Exception providing more information about the failure

public BuildFailedException (string message, Exception innerException);
new Microsoft.SqlServer.Dac.Deployment.BuildFailedException : string * Exception -> Microsoft.SqlServer.Dac.Deployment.BuildFailedException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

string describing the cause of the failure

innerException
Exception

Exception that is the root cause of the failure

Applies to