ProblemSuppressionException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ProblemSuppressionException() |
Construct a new instance of the ProblemSuppressionException class. |
ProblemSuppressionException(String) |
Construct a new instance of the ProblemSuppressionException class with the specified error message. |
ProblemSuppressionException(String, Exception) |
Construct a new instance of the ProblemSuppressionException class with the specified error message and a reference to the inner exception that is the cause of this exception. |
ProblemSuppressionException()
Construct a new instance of the ProblemSuppressionException class.
public ProblemSuppressionException ();
Public Sub New ()
Applies to
ProblemSuppressionException(String)
Construct a new instance of the ProblemSuppressionException class with the specified error message.
public ProblemSuppressionException (string message);
new Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException : string -> Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException
Public Sub New (message As String)
Parameters
- message
- String
Applies to
ProblemSuppressionException(String, Exception)
Construct a new instance of the ProblemSuppressionException class with the specified error message and a reference to the inner exception that is the cause of this exception.
public ProblemSuppressionException (string message, Exception innerException);
new Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException : string * Exception -> Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The message that describes the error.
- innerException
- Exception
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.