You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2004/11/23 02:54:07 UTC

svn commit: r106256 - /geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java

Author: ammulder
Date: Mon Nov 22 17:54:06 2004
New Revision: 106256

Modified:
   geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java
Log:
More informative (if still not terribly helpful) error message.  See
  GERONIMO-491 for really improving this.


Modified: geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java
Url: http://svn.apache.org/viewcvs/geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java?view=diff&rev=106256&p1=geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java&r1=106255&p2=geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java&r2=106256
==============================================================================
--- geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java	(original)
+++ geronimo/trunk/modules/deployment/src/java/org/apache/geronimo/deployment/Deployer.java	Mon Nov 22 17:54:06 2004
@@ -162,7 +162,7 @@
                 }
             }
             if (builder == null) {
-                throw new DeploymentException("No deployer found:" +
+                throw new DeploymentException("Syntax error in deployment plan or no deployer service available (currently I can't tell the difference):" +
                         (planFile == null ? "" : " planFile=" + planFile.getAbsolutePath()) +
                         (moduleFile == null ? "" : ", moduleFile" + moduleFile.getAbsolutePath()));
             }