Click or drag to resize

NotConnectedException Class

This exception should be raised when an operation is attempted that requires communication with the device, but the device is disconnected.
Inheritance Hierarchy
SystemObject
  SystemException
    ASCOMDriverException
      ASCOMNotConnectedException

Namespace: ASCOM
Assembly: ASCOM.Exceptions (in ASCOM.Exceptions.dll) Version: 6.0.0.0 (7.0.9999.9999)
Syntax
[SerializableAttribute]
public class NotConnectedException : DriverException

The NotConnectedException type exposes the following members.

Constructors
 NameDescription
Public methodNotConnectedException Default public constructor for NotConnectedException takes no parameters.
Public methodNotConnectedException(Exception) Initializes a new instance of the NotConnectedException class from another exception.
Public methodNotConnectedException(String) Initializes a new instance of the NotConnectedException class with a non-default error message.
Public methodNotConnectedException(String, Exception) Initializes a new instance of the NotConnectedException class based on another exception.
Top
Properties
 NameDescription
Public propertyNumber The COM error code for this exception (hex 80040400 - 800404FF)
(Inherited from DriverException)
Top
Extension Methods
 NameDescription
Public Extension MethodErrorCode Extension method to get the Alpaca Error Code for an Exception. Returns UnspecifiedError if it cannot find a better code
(Defined by ExceptionHelpers)
Top
Remarks

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

See Also