[jboss-cvs] JBossAS SVN: r81252 - trunk/server/src/main/org/jboss/deployment.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 18 15:35:05 EST 2008


Author: scott.stark at jboss.org
Date: 2008-11-18 15:35:05 -0500 (Tue, 18 Nov 2008)
New Revision: 81252

Modified:
   trunk/server/src/main/org/jboss/deployment/EARStructure.java
Log:
Include the full deployment URI in the structure error msg

Modified: trunk/server/src/main/org/jboss/deployment/EARStructure.java
===================================================================
--- trunk/server/src/main/org/jboss/deployment/EARStructure.java	2008-11-18 20:28:46 UTC (rev 81251)
+++ trunk/server/src/main/org/jboss/deployment/EARStructure.java	2008-11-18 20:35:05 UTC (rev 81252)
@@ -269,7 +269,7 @@
                      VirtualFile module = file.getChild(fileName);
                      if (module == null)
                      {
-                        throw new RuntimeException(fileName + " module listed in application.xml does not exist within .ear " + file.getName());
+                        throw new RuntimeException(fileName + " module listed in application.xml does not exist within .ear " + file.toURI());
                      }
                      // Ask the deployers to analyze this
                      if(structureContext.determineChildStructure(module) == false)




More information about the jboss-cvs-commits mailing list