InvalidValueException Constructor (String, String, String, Exception) |
Create a new exception object and identify the specified driver property as the source,
and include an inner exception object containing a caught exception.
Namespace:
ASCOM
Assembly:
ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxpublic InvalidValueException(
string propertyOrMethod,
string value,
string range,
Exception inner
)
Public Sub New (
propertyOrMethod As String,
value As String,
range As String,
inner As Exception
)
public:
InvalidValueException(
String^ propertyOrMethod,
String^ value,
String^ range,
Exception^ inner
)
Parameters
- propertyOrMethod
- Type: SystemString
The name of the driver property/accessor or method that caused the exception - value
- Type: SystemString
The invalid value that was supplied - range
- Type: SystemString
The valid value range - inner
- Type: SystemException
The caught exception
See Also