BacpacException Constructor (, )
Initializes a new instance of the BacpacException class with specified error message and inner exception.
Namespace: Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)
Syntax
'Déclaration
Public Sub New ( _
message As String, _
innerException As Exception _
)
'Utilisation
Dim message As String
Dim innerException As Exception
Dim instance As New BacpacException(message, _
innerException)
public BacpacException(
string message,
Exception innerException
)
public:
BacpacException(
String^ message,
Exception^ innerException
)
new :
message:string *
innerException:Exception -> BacpacException
public function BacpacException(
message : String,
innerException : Exception
)
Parameters
- message
Type: String
The error message.
- innerException
Type: Exception
The inner exception.