com.sun.javadoc
Interface ThrowsTag


public abstract interface ThrowsTag
extends Tag

Represents a @throws or @exception documentation tag. Parses and holds the exception name and exception comment. Note: @exception is a backwards compatible synonymy for @throws.

See Also:
ExecutableMemberDoc.throwsTags()

Fields inherited from class java.io.Serializable
serialVersionUID
 
Method Summary
 ClassDoc exception()
          Return the exception as a ClassDoc.
 java.lang.String exceptionComment()
          Return the exception comment.
 java.lang.String exceptionName()
          Return the exception name.
 
Methods inherited from interface com.sun.javadoc.Tag
firstSentenceTags, inlineTags, kind, name, text, toString
 

Method Detail

exceptionName

public java.lang.String exceptionName()
Return the exception name.

exceptionComment

public java.lang.String exceptionComment()
Return the exception comment.

exception

public ClassDoc exception()
Return the exception as a ClassDoc.