Skip to content
Snippets Groups Projects
Commit fb401dbc authored by Irina Muntean's avatar Irina Muntean
Browse files

Add caught exception to list and throw new exception

Issue-Ref: 4168
Issue-Url: af3#4168



Signed-off-by: default avatarIrina Muntean <muntean@fortiss.org>
parent ab311b33
No related branches found
No related tags found
1 merge request!159Add caught exception to list and throw new exception
...@@ -17,12 +17,14 @@ package org.fortiss.tooling.kernel.utils; ...@@ -17,12 +17,14 @@ package org.fortiss.tooling.kernel.utils;
import static org.eclipse.core.runtime.Assert.isNotNull; import static org.eclipse.core.runtime.Assert.isNotNull;
import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EObject;
import org.fortiss.tooling.kernel.extension.data.ITransformationContext; import org.fortiss.tooling.kernel.extension.data.ITransformationContext;
import org.fortiss.tooling.kernel.extension.data.TransformationProviderChain; import org.fortiss.tooling.kernel.extension.data.TransformationProviderChain;
import org.fortiss.tooling.kernel.extension.exception.ChainTransformationFailedException; import org.fortiss.tooling.kernel.extension.exception.ChainTransformationFailedException;
import org.fortiss.tooling.kernel.extension.exception.AllChainTransformationsFailedException;
import org.fortiss.tooling.kernel.service.ITransformationService; import org.fortiss.tooling.kernel.service.ITransformationService;
/** /**
...@@ -52,6 +54,7 @@ public final class TransformationUtils { ...@@ -52,6 +54,7 @@ public final class TransformationUtils {
throws ChainTransformationFailedException { throws ChainTransformationFailedException {
List<TransformationProviderChain> chainList = ITransformationService.getInstance() List<TransformationProviderChain> chainList = ITransformationService.getInstance()
.getTransformationProviderChain(sourceElement.getClass(), targetClass, context); .getTransformationProviderChain(sourceElement.getClass(), targetClass, context);
List<ChainTransformationFailedException> exceptionList = new ArrayList<>();
if(!chainList.isEmpty()) { if(!chainList.isEmpty()) {
for(TransformationProviderChain chain : chainList) { for(TransformationProviderChain chain : chainList) {
try { try {
...@@ -67,10 +70,14 @@ public final class TransformationUtils { ...@@ -67,10 +70,14 @@ public final class TransformationUtils {
return executableObject; return executableObject;
} catch(ChainTransformationFailedException ctfe) { } catch(ChainTransformationFailedException ctfe) {
// fall through // fall through
exceptionList.add(ctfe);
} }
} }
} }
throw new NoTransformationChainFound(sourceElement, targetClass); if(exceptionList.isEmpty())
throw new NoTransformationChainFound(sourceElement, targetClass);
throw new AllChainTransformationsFailedException(exceptionList);
} }
/** Exception thrown when no transformation chain was found. */ /** Exception thrown when no transformation chain was found. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment