Why IllegalArgumentException not linked to java.sun.com?
I am using Eclipse 3.2.1 and Java 1.5. All of my links to core API seem to work except those to IllegalArgumentException.
The Ant script that Eclipse builds contains:<link href="http://java.sun.com/j2se/1.5.0/docs/api/"/>
The source code doc comment line:* @throws{@link IllegalArgumentException} ...
The resulting doc page contains:Throws:
{@link - IllegalArgumentException} ...
The same source code doc comment contains:* @param rs a{@link String} of length 2 ...
which works as hoped: String appears as a link to java.sun.com. Likewise with many other links to core API classes, interfaces, etc.

