You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2013/09/24 23:35:46 UTC

svn commit: r1526019 - /sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java

Author: rombert
Date: Tue Sep 24 21:35:46 2013
New Revision: 1526019

URL: http://svn.apache.org/r1526019
Log:
SLING-3102 - Inconsistent behaviour when loading archetypes in new Sling
bundle project wizard

Correct error reporting - dig down into the root cause of an
InvocationTargetException.

Modified:
    sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java

Modified: sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java
URL: http://svn.apache.org/viewvc/sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java?rev=1526019&r1=1526018&r2=1526019&view=diff
==============================================================================
--- sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java (original)
+++ sling/branches/tooling-ide-vlt/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/AbstractNewSlingApplicationWizard.java Tue Sep 24 21:35:46 2013
@@ -150,7 +150,7 @@ public abstract class AbstractNewSlingAp
             Thread.currentThread().interrupt();
         	return false;
 		} catch (InvocationTargetException e) {
-            reportError(e);
+            reportError(e.getTargetException());
             return false;
 		}
 	}