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() |
Initializes a new instance of the ServiceRequestException class. |
ServiceRequestException(String) |
Initializes a new instance of the ServiceRequestException class with an error message. |
ServiceRequestException(String, Exception) |
Initializes a new instance of the ServiceRequestException class with an error message and an inner exception. |
ServiceRequestException()
Initializes a new instance of the ServiceRequestException class.
public:
ServiceRequestException();
public ServiceRequestException ();
Public Sub New ()
Applies to
ServiceRequestException(String)
Initializes a new instance of the ServiceRequestException class with an error message.
public:
ServiceRequestException(System::String ^ message);
public ServiceRequestException (string message);
Public Sub New (message As String)
Parameters
- message
- String
The error message text.
Applies to
ServiceRequestException(String, Exception)
Initializes a new instance of the ServiceRequestException class with an error message and an inner exception.
public:
ServiceRequestException(System::String ^ message, Exception ^ innerException);
public ServiceRequestException (string message, Exception innerException);
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The error message text.
- innerException
- Exception
The inner exception.