Click or drag to resize

NotImplementedException Class

All properties and methods defined by the relevant ASCOM standard interface must exist in each driver. However, those properties and methods do not all have to be implemented. This exception is a base class for PropertyNotImplementedException and MethodNotImplementedException, which drivers should use for throwing the relevant exception(s). This class is intended to be used by clients who wish to catch either of the two specific exceptions in a single catch() clause.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotImplementedException
        ASCOMActionNotImplementedException
        ASCOMMethodNotImplementedException
        ASCOMPropertyNotImplementedException

Namespace:  ASCOM
Assembly:  ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntax
[SerializableAttribute]
public class NotImplementedException : DriverException

The NotImplementedException type exposes the following members.

Constructors
  NameDescription
Public methodNotImplementedException
Added to keep Code analysis happy, please don't use it.
Public methodNotImplementedException(String)
Create a new exception object and identify the specified driver property or method as the source.
Public methodNotImplementedException(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.
Top
Properties
  NameDescription
Public propertyNumber
The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException.)
Public propertyPropertyOrMethod
The property/accessor or method that is not implemented
Top
Remarks

If you need to throw this error as a COM exception use the error number: 0x80040400.

See Also