Return-Path: Delivered-To: apmail-ws-woden-dev-archive@www.apache.org Received: (qmail 42421 invoked from network); 8 Oct 2005 17:03:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Oct 2005 17:03:03 -0000 Received: (qmail 62392 invoked by uid 500); 8 Oct 2005 17:03:03 -0000 Delivered-To: apmail-ws-woden-dev-archive@ws.apache.org Received: (qmail 62364 invoked by uid 500); 8 Oct 2005 17:03:02 -0000 Mailing-List: contact woden-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: woden-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list woden-dev@ws.apache.org Received: (qmail 62353 invoked by uid 500); 8 Oct 2005 17:03:02 -0000 Delivered-To: apmail-incubator-woden-cvs@incubator.apache.org Received: (qmail 62349 invoked by uid 99); 8 Oct 2005 17:03:02 -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 [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 08 Oct 2005 10:03:01 -0700 Received: (qmail 42413 invoked by uid 65534); 8 Oct 2005 17:02:41 -0000 Message-ID: <20051008170241.42412.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r307312 - /incubator/woden/java/src/org/apache/woden/WSDLReader.java Date: Sat, 08 Oct 2005 17:02:41 -0000 To: woden-cvs@incubator.apache.org From: jkaputin@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jkaputin Date: Sat Oct 8 10:02:35 2005 New Revision: 307312 URL: http://svn.apache.org/viewcvs?rev=307312&view=rev Log: modified readWSDL to declare WSDLException instead of Exception Modified: incubator/woden/java/src/org/apache/woden/WSDLReader.java Modified: incubator/woden/java/src/org/apache/woden/WSDLReader.java URL: http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/WSDLReader.java?rev=307312&r1=307311&r2=307312&view=diff ============================================================================== --- incubator/woden/java/src/org/apache/woden/WSDLReader.java (original) +++ incubator/woden/java/src/org/apache/woden/WSDLReader.java Sat Oct 8 10:02:35 2005 @@ -53,11 +53,13 @@ * * TODO: return value is WSDL 2.0 specific. May be refactored. * - * @param wsdlURI a URI (can be a filename or URL) pointing to a - * WSDL XML description. - * @return the description. + * @param wsdlURI a URI (absolute filename or URL) pointing to a + * WSDL document. + * @return the description element of the WSDL document. + * @throws WSDLException for terminating errors and as wrapper + * for checked exceptions. */ - public DescriptionElement readWSDL(String wsdlURI) throws Exception; + public DescriptionElement readWSDL(String wsdlURI) throws WSDLException; //TODO - a readWSDL method that returns a Description (eg a component) --------------------------------------------------------------------- To unsubscribe, e-mail: woden-dev-unsubscribe@ws.apache.org For additional commands, e-mail: woden-dev-help@ws.apache.org