CPD Results

The following document contains the results of PMD's CPD 4.2.2.

Duplications

File Line
org/apache/geronimo/components/jaspi/model/ProtectionPolicyType.java 103
org/apache/geronimo/components/jaspi/model/TargetType.java 103
                    MessagePolicy.Target target = cnst.newInstance();
                    return target;
                }
            });
        } catch (PrivilegedActionException e) {
            Exception inner = e.getException();
            if (inner instanceof InstantiationException) {
                throw (AuthException) new AuthException("AuthConfigFactory error:"
                                + inner.getCause().getMessage()).initCause(inner.getCause());
            } else {
                throw (AuthException) new AuthException("AuthConfigFactory error: " + inner).initCause(inner);
            }
        } catch (Exception e) {
            throw (AuthException) new AuthException("AuthConfigFactory error: " + e).initCause(e);
        }
        
    }

}