Scaladoc swallowed @throws and @note tags

When creating Scala documentation, I also use tags @throwsand @note, as documented here (Scaladoc Wiki - tags and annotations) .

Unfortunately, I can not find them in the generated Scaladoc .

Do I need to install certain keys, consider something specific, or is this a known problem?

BTW: using the scaladocAnt Scala 2.9.0.1 task, which also does not generate a warning.

EDIT: BTW2 and clarify: I don't mean annotation@throws

@throws(classOf[RuntimeException])
def dispatch: Nothing = throw new RuntimeException

which is described in the annotations section of this defbut tag @throwsfor Scaladoc for example

/** @throws RuntimeException
 */
def dispatch: Nothing = throw new RuntimeException
+5
source share
2

- .

@note , , . @todo, @note @example ?

@throws, . Simon Ochsenreither, 2011 . , 2.9.0.1 2011 , 2.9.1 2011 .

+3

I ​​ @note .

, : scala.util.matching.Regex

, @throws ScalaDoc. , @throws, , , ScalaDoc .

, , , !

: Mhhh. scala.Array, , ...

+3

All Articles