You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by aj...@apache.org on 2008/02/17 20:32:26 UTC

svn commit: r628536 - /webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java

Author: ajith
Date: Sun Feb 17 11:32:25 2008
New Revision: 628536

URL: http://svn.apache.org/viewvc?rev=628536&view=rev
Log:
Fixing issue WSCOMMONS-298

Modified:
    webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java

Modified: webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java
URL: http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java?rev=628536&r1=628535&r2=628536&view=diff
==============================================================================
--- webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java (original)
+++ webservices/commons/branches/modules/XmlSchema/1.3.3/src/main/java/org/apache/ws/commons/schema/XmlSchema.java Sun Feb 17 11:32:25 2008
@@ -509,9 +509,9 @@
     public void addType(XmlSchemaType type) {
         QName qname = type.getQName();
         if (schemaTypes.contains(qname)) {
-            throw new RuntimeException("Schema for namespace '" +
+            throw new XmlSchemaException(" Schema for namespace '" +
                     syntacticalTargetNamespace + "' already contains type '" +
-                    qname.getLocalPart());
+                    qname.getLocalPart() + "'");
         }
         schemaTypes.add(qname, type);
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org