Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 9084 invoked from network); 10 May 2004 20:49:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 10 May 2004 20:49:41 -0000 Received: (qmail 45976 invoked by uid 500); 10 May 2004 20:40:53 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 40810 invoked by uid 500); 10 May 2004 20:39:40 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 37394 invoked by uid 98); 10 May 2004 20:39:01 -0000 Received: from dims@apache.org by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(209.237.227.194):. Processed in 5.347189 secs); 10 May 2004 20:39:01 -0000 X-Qmail-Scanner-Mail-From: dims@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 5.347189 secs) Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by hermes.apache.org with SMTP; 10 May 2004 20:38:53 -0000 Received: (qmail 94597 invoked by uid 1203); 10 May 2004 17:18:55 -0000 Date: 10 May 2004 17:18:55 -0000 Message-ID: <20040510171855.94596.qmail@minotaur.apache.org> From: dims@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/java/src/org/apache/axis/client ServiceFactory.java X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dims 2004/05/10 10:18:55 Modified: java/src/org/apache/axis/client ServiceFactory.java Log: Fix build failure caused by exception without a text message. Revision Changes Path 1.25 +1 -1 ws-axis/java/src/org/apache/axis/client/ServiceFactory.java Index: ServiceFactory.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/client/ServiceFactory.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ServiceFactory.java 10 May 2004 08:22:28 -0000 1.24 +++ ServiceFactory.java 10 May 2004 17:18:55 -0000 1.25 @@ -301,7 +301,7 @@ private Service createService(String serviceImplementationName) throws ServiceException { try { if(serviceImplementationName == null) { - throw new IllegalArgumentException(); + throw new IllegalArgumentException(Messages.getMessage("serviceFactoryInvalidServiceName")); } Class serviceImplementationClass; serviceImplementationClass = Thread.currentThread().getContextClassLoader().loadClass(serviceImplementationName);