DeploymentOperationException Constructor (String, Exception, Collection<Error>)
Initializes a new instance of the DeploymentOperationException class with the specified error message, inner exception, and error collection.
Namespace: Microsoft.MasterDataServices.Deployment
Assembly: Microsoft.MasterDataServices.Deployment (in Microsoft.MasterDataServices.Deployment.dll)
Syntax
public DeploymentOperationException(
string message,
Exception innerException,
Collection<Error> errors
)
public:
DeploymentOperationException(
String^ message,
Exception^ innerException,
Collection<Error^>^ errors
)
new :
message:string *
innerException:Exception *
errors:Collection<Error> -> DeploymentOperationException
Public Sub New (
message As String,
innerException As Exception,
errors As Collection(Of Error)
)
Parameters
message
Type: System.StringThe error message associated with the exception.
innerException
Type: System.ExceptionA reference to the inner exception that is the cause of the exception.
errors
Type: System.Collections.ObjectModel.Collection<Error>The collection of operation result errors associated with the exception.
See Also
DeploymentOperationException Overload
DeploymentOperationException Class
Microsoft.MasterDataServices.Deployment Namespace
Return to top