ServiceRequestException 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
ServiceRequestException() |
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException. |
ServiceRequestException(String) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException. |
ServiceRequestException(String, Exception) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException. |
ServiceRequestException()
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException.
public ServiceRequestException ();
Public Sub New ()
Applies to
ServiceRequestException(String)
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException.
public ServiceRequestException (string message);
new Microsoft.SqlServer.Management.Smo.ServiceRequestException : string -> Microsoft.SqlServer.Management.Smo.ServiceRequestException
Public Sub New (message As String)
Parameters
- message
- String
The message of the exception as string.
Applies to
ServiceRequestException(String, Exception)
Constructor for the T:Microsoft.SqlServer.Management.Smo.ServiceRequestException.
public ServiceRequestException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.ServiceRequestException : string * Exception -> Microsoft.SqlServer.Management.Smo.ServiceRequestException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The message of the exception.
- innerException
- Exception
The T:System.Exception instance that caused the current exception.