This document is archived and information here might be outdated.  Recommended version.


ITopologyErrorFeature.IsException Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITopologyErrorFeature Interface > ITopologyErrorFeature.IsException Property
ArcGIS Developer Help

ITopologyErrorFeature.IsException Property

Indicates if topology error is an exception.

[Visual Basic .NET]
Public ReadOnly Property IsException As Boolean
[C#]
public bool IsException {get;}
[C++]
HRESULT get_IsException(
  Boolean* exception
);
[C++]
Parameters
exception [out, retval]

exception is a parameter of type bool*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

Denotes if the topology error has been marked as an exception. Exceptions arise when a topology rule is purposefully violated.  The topology error can be marked as an exception with the ITopologyRuleContainer::PromotetoRuleException method.  Marking purposeful topology errors as exceptions allows other clients of the topology to handle them in an appropriate or specific manner, e.g., in reporting or symbolization.

Note that it is also possible to demote an exception or mark the exception as an error with the ITopologyRuleContainer::DemoteFromRuleException method.

See Also

ITopologyErrorFeature Interface