Add Certification merge logic
[oom/platform/cert-service.git] / trustStoreMerger / src / main / java / org / onap / oom / truststoremerger / certification / file / exception / TruststoreFileFactoryException.java
  * ============LICENSE_END=========================================================
  */
 
-package org.onap.oom.truststoremerger.certification.file.provider;
+package org.onap.oom.truststoremerger.certification.file.exception;
 
 import org.onap.oom.truststoremerger.api.ExitStatus;
 import org.onap.oom.truststoremerger.api.ExitableException;
 
-class TruststoreFileFactoryException extends ExitableException {
-    TruststoreFileFactoryException(String message) {
+public class TruststoreFileFactoryException extends ExitableException {
+    public TruststoreFileFactoryException(String message) {
         super(message, ExitStatus.TRUSTSTORE_FILE_FACTORY_EXCEPTION);
     }