An exception thrown when ArcGIS Explorer encounters problems connecting a Table, Raster, or Layer.

Namespace:  ESRI.ArcGISExplorer

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public class ConnectionException : ExplorerException
Visual Basic (Declaration)
Public Class ConnectionException _
	Inherits ExplorerException

Remarks

The ArcGIS Explorer API may throw different types of exception where appropriate, including .NET framework exception types. This exception class inherits from the more general class, may be thrown when connections to data fail; check the Message property for more information on the reasons for the exception.

Add an ESRI.ArcGISExplorer.ConnectionException filter around code which attempts to connect to data sources; add the ConnectionException filter before the more general ExplorerException filter in order to catch the most specific exception type.

Inheritance Hierarchy

System..::.Object

  System..::.Exception

    ESRI.ArcGISExplorer..::.ExplorerException

      ESRI.ArcGISExplorer..::.ConnectionException

See Also