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
def dispatch: Nothing = throw new RuntimeException
source
share