I have @throws in my javadocs, but Checkstyle still complains about
them.

For example, the following code still gives an error on missing throws,
and it flags every single throws we have.

Brian N Burridge
IBM

    /***
      * getProfileData
      *
      * @return HashMap contains the name-value pairs retrieved from the profile
      *
      * @param systemID System ID
      * @param appInstance Application Instance
      * @param dbName Database Name
      *
      * @throws NamingException
      */
      public HashMap getProfileData(
          String systemID,
          String appInstance,
          String dbName)
          throws NamingException {
          HashMap profile;
          Connection connection = null;

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to