Changes for Checkstyle 8.32
[policy/models.git] / models-dao / src / main / java / org / onap / policy / models / dao / PfDaoFactory.java
index d612297..177a7f3 100644 (file)
@@ -23,7 +23,6 @@ package org.onap.policy.models.dao;
 
 import java.lang.reflect.InvocationTargetException;
 import javax.ws.rs.core.Response;
-
 import org.onap.policy.common.utils.validation.Assertions;
 import org.onap.policy.models.base.PfModelException;
 import org.slf4j.Logger;
@@ -58,7 +57,7 @@ public class PfDaoFactory {
                         | InvocationTargetException | NoSuchMethodException | SecurityException e) {
             String errorMessage =
                     "Policy Framework DAO class not found for DAO plugin \"" + daoParameters.getPluginClass() + "\"";
-            LOGGER.error(errorMessage, e);
+            LOGGER.error(errorMessage);
             throw new PfModelException(Response.Status.INTERNAL_SERVER_ERROR, errorMessage, e);
         }