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
|