According to the documentation of YUIdoc (which seems to be in this case equivalent to jsdoc) there is a @throws tag to document a potentially thrown error.
Specifies an error which method throws. A @throws tag has the structure @throws {type} description. The {type} is optional.
In my case there are several checks in a function which can throw an error so I would like to list them with @throws. But you can not have more than one @throws tag. So how can I put a list of potentially thrown errors in this tag?