Can I use multiple @throws
javadoc tags if my application throws the same exception for multiple reasons? For example:
@throws UserException if issue 1 happened
@throws UserException if issue 2 happened
@throws UserException if issue 3 happened
Is it prohibited by JavaDoc standard?