Duplicate catch-block in WSSecurityEngine
-----------------------------------------

         Key: WSS-14
         URL: http://issues.apache.org/jira/browse/WSS-14
     Project: WSS4J
        Type: Bug
 Environment: WSS4J 1.0.0
    Reporter: Guy Rixon
 Assigned to: Davanum Srinivas 
    Priority: Minor


At line 474 in WSSecurityEngine.java there is a try-catch construct in which 
the catch-block is duplicated.

        try {
            sig = new XMLSignature(elem, null);
        } catch (XMLSignatureException e2) {
            throw new WSSecurityException(WSSecurityException.FAILED_CHECK,
                    "noXMLSig");
        } catch (XMLSecurityException e2) {
            throw new WSSecurityException(WSSecurityException.FAILED_CHECK,
                    "noXMLSig");
        }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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

Reply via email to