Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 4108 invoked from network); 3 Jun 2005 08:19:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Jun 2005 08:19:56 -0000 Received: (qmail 13566 invoked by uid 500); 3 Jun 2005 08:19:53 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 13543 invoked by uid 500); 3 Jun 2005 08:19:53 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 13523 invoked by uid 99); 3 Jun 2005 08:19:53 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 03 Jun 2005 01:19:52 -0700 Received: (qmail 4038 invoked by uid 65534); 3 Jun 2005 08:19:40 -0000 Message-ID: <20050603081940.4037.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r179744 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/DeploymentParser.java Date: Fri, 03 Jun 2005 08:19:40 -0000 To: axis-cvs@ws.apache.org From: deepal@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: deepal Date: Fri Jun 3 01:19:39 2005 New Revision: 179744 URL: http://svn.apache.org/viewcvs?rev=3D179744&view=3Drev Log: fix incorrect exception Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentParser.java Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis/depl= oyment/DeploymentParser.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core= /src/org/apache/axis/deployment/DeploymentParser.java?rev=3D179744&r1=3D179= 743&r2=3D179744&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentParser.java (original) +++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentParser.java Fri Jun 3 01:19:39 2005 @@ -474,7 +474,7 @@ } catch (XMLStreamException e) { throw new DeploymentException("parser Exception", e); } catch (AxisFault axisFault) { - throw new DeploymentException("Module referece error , module = dosenoot exist !!"); + throw new DeploymentException(axisFault); } } =20