InternalErrorException 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.
Initializes a new instance of the InternalErrorException class.
Overloads
InternalErrorException() |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the InternalErrorException class. |
InternalErrorException(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the InternalErrorException class, specifying an error message. |
InternalErrorException(String, Exception) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the InternalErrorException class, specifying an error message and an inner exception. |
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
InternalErrorException()
Initializes a new instance of the InternalErrorException class.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
InternalErrorException();
public InternalErrorException ();
Public Sub New ()
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
Applies to
InternalErrorException(String)
Initializes a new instance of the InternalErrorException class, specifying an error message.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
InternalErrorException(System::String ^ message);
public InternalErrorException (string message);
new Microsoft.VisualBasic.CompilerServices.InternalErrorException : string -> Microsoft.VisualBasic.CompilerServices.InternalErrorException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the error.
Remarks
The value of the message
parameter is set as the value of the Message property.
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
Applies to
InternalErrorException(String, Exception)
Initializes a new instance of the InternalErrorException class, specifying an error message and an inner exception.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
InternalErrorException(System::String ^ message, Exception ^ innerException);
public InternalErrorException (string message, Exception innerException);
new Microsoft.VisualBasic.CompilerServices.InternalErrorException : string * Exception -> Microsoft.VisualBasic.CompilerServices.InternalErrorException
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 internal exception.
Remarks
The value of the message
parameter is set as the value of the Message property. The value of the innerException
parameter is set as the value of the InnerException property.
This class supports the Visual Basic compiler and is not intended to be used directly from your code.