DriverException Constructor (String, Int32, Exception) |
Create a new ASCOM exception based on another exception plus additional descriptive text and error code. This member is
required for a well-behaved exception class. For example, if a driver receives an exception
(perhaps a COMException) from some other component yet it wants to report some meaningful
error that resulted from the other error, it can package the original error in the
InnerException member of the exception it generates.
Namespace:
ASCOM
Assembly:
ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxpublic DriverException(
string message,
int number,
Exception inner
)
Public Sub New (
message As String,
number As Integer,
inner As Exception
)
public:
DriverException(
String^ message,
int number,
Exception^ inner
)
Parameters
- message
- Type: SystemString
Descriptive text describing the cause of the exception - number
- Type: SystemInt32
Error code for the exception (80040400 - 80040FFF). - inner
- Type: SystemException
The inner exception that led to throwing this exception
See Also