You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2009/12/05 23:45:46 UTC

svn commit: r887605 - /cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java

Author: reinhard
Date: Sat Dec  5 22:45:45 2009
New Revision: 887605

URL: http://svn.apache.org/viewvc?rev=887605&view=rev
Log:
don't swallow the exception

Modified:
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java

Modified: cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java?rev=887605&r1=887604&r2=887605&view=diff
==============================================================================
--- cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java (original)
+++ cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/rcl/PrepareWebappMojo.java Sat Dec  5 22:45:45 2009
@@ -453,7 +453,7 @@
             FileUtils.copyDirectory(this.customWebappDirectory, webAppBaseDir);
         } catch (IOException e) {
             throw new MojoExecutionException("Can't copy custom webapp files (directory: '" + this.customWebappDirectory
-                            + ") to the web application in preparation.");
+                            + ") to the web application in preparation.", e);
         }
     }