Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 49200 invoked from network); 31 Jul 2004 01:01:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 31 Jul 2004 01:01:25 -0000 Received: (qmail 51046 invoked by uid 500); 31 Jul 2004 01:01:25 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 50869 invoked by uid 500); 31 Jul 2004 01:01:24 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@geronimo.apache.org Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 50856 invoked by uid 500); 31 Jul 2004 01:01:24 -0000 Delivered-To: apmail-incubator-geronimo-cvs@apache.org Received: (qmail 50853 invoked by uid 99); 31 Jul 2004 01:01:24 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 30 Jul 2004 18:01:24 -0700 Received: (qmail 49181 invoked by uid 1819); 31 Jul 2004 01:01:23 -0000 Date: 31 Jul 2004 01:01:23 -0000 Message-ID: <20040731010123.49180.qmail@minotaur.apache.org> From: jlaskowski@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/modules/j2ee/src/java/org/apache/geronimo/j2ee/deployment EARConfigBuilder.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jlaskowski 2004/07/30 18:01:23 Modified: modules/j2ee/src/java/org/apache/geronimo/j2ee/deployment EARConfigBuilder.java Log: Exception messages correction Revision Changes Path 1.16 +3 -3 incubator-geronimo/modules/j2ee/src/java/org/apache/geronimo/j2ee/deployment/EARConfigBuilder.java Index: EARConfigBuilder.java =================================================================== RCS file: /home/cvs/incubator-geronimo/modules/j2ee/src/java/org/apache/geronimo/j2ee/deployment/EARConfigBuilder.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- EARConfigBuilder.java 23 Jul 2004 06:06:19 -0000 1.15 +++ EARConfigBuilder.java 31 Jul 2004 01:01:22 -0000 1.16 @@ -265,7 +265,7 @@ public void installModule(ModuleBuilder moduleBuilder, EARContext earContext, Module module) throws IOException, DeploymentException { if ( false == module instanceof ConnectorModule && false == module instanceof WebModule ) { - throw new DeploymentException("Only unpacked RAR are suppored."); + throw new DeploymentException("Only unpacked RARs and WARs (in unpacked EAR) are supported."); } // TODO gets rid of this cast when all the ModuleBuilder will // support unpacked deployments. @@ -581,7 +581,7 @@ } } - throw new DeploymentException("Could not determine config id"); + throw new DeploymentException("Could not determine type"); } private URI getDependencyURI(GerDependencyType dep) throws DeploymentException {