Skip to content
Snippets Groups Projects
Commit dd046994 authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

generalizes the method

refs 2728
parent 279a0db1
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ import org.fortiss.tooling.kernel.service.ITransformationService;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 2B265BA13E361871448902118D5275F0
* @ConQAT.Rating YELLOW Hash: CF051A4105576C2AB4E4BB6A12AA5739
*/
public final class TransformationUtils {
......@@ -163,7 +163,7 @@ public final class TransformationUtils {
* the exception
* @return the deepest non-null cause of <code>e</code>
*/
public static Throwable getOriginalCause(ChainTransformationFailedException e) {
public static Throwable getOriginalCause(Throwable e) {
Throwable f = e.getCause();
Throwable previous = e;
while(f != null) {
......
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