VSdocman Help  

<exception> Tag

Adds a link into exceptions list. This tag lets you specify which exceptions a member can throw. A VSdocman comment may contain any number of <exception> tags. Equivalent @-style tag is @exception.

Syntax

<exception cref="reference">description</exception>

Reference should point to some Exception class in your project. Warning appears during compilation if reference points to non-existing target. Description describes situation when this exception is thrown.

Example:

    '''<exception cref="TestDLL.DllClass1.nestedException">
    '''If something horrible happens.</exception>
    Function method1(ByVal x() As Integer, ByVal y As String) As Boolean

See Also

Reference Format | @exception tag