Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 65857 invoked from network); 19 Aug 2006 03:34:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Aug 2006 03:34:51 -0000 Received: (qmail 59950 invoked by uid 500); 19 Aug 2006 03:34:50 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 59859 invoked by uid 500); 19 Aug 2006 03:34:49 -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 59848 invoked by uid 500); 19 Aug 2006 03:34:49 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 59844 invoked by uid 99); 19 Aug 2006 03:34:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Aug 2006 20:34:49 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Aug 2006 20:34:49 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E13EE1A981A; Fri, 18 Aug 2006 20:34:28 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r432785 - /webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java Date: Sat, 19 Aug 2006 03:34:27 -0000 To: axis2-cvs@ws.apache.org From: dims@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060819033428.E13EE1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dims Date: Fri Aug 18 20:34:24 2006 New Revision: 432785 URL: http://svn.apache.org/viewvc?rev=432785&view=rev Log: add more info about the context Modified: webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java Modified: webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java?rev=432785&r1=432784&r2=432785&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java (original) +++ webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/SchemaCompiler.java Fri Aug 18 20:34:24 2006 @@ -1596,12 +1596,12 @@ }else if (content instanceof XmlSchemaSimpleTypeUnion) { //Todo - Handle unions here throw new SchemaCompilationException( - SchemaCompilerMessages.getMessage("schema.unsupportedcontenterror","Simple Type Union")); + SchemaCompilerMessages.getMessage("schema.unsupportedcontenterror","Simple Type Union in " + simpleType.getQName())); }else if (content instanceof XmlSchemaSimpleTypeList){ //todo - Handle lists here throw new SchemaCompilationException( - SchemaCompilerMessages.getMessage("schema.unsupportedcontenterror","Simple Type List")); + SchemaCompilerMessages.getMessage("schema.unsupportedcontenterror","Simple Type List in " + simpleType.getQName())); } } return metaInfHolder; --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org