1 package com.thaiopensource.validate; 2 3 /** 4 * Thrown to indicate an XML document is not a correct schema, either because the 5 * XML document is not well-formed or because it fails to be correct in some other 6 * way. 7 * 8 * @see SchemaReader#createSchema 9 * 10 * @author <a HREF="mailto:jjc@jclark.com">James Clark</a> 11 */ 12 public class IncorrectSchemaException extends Exception { 13 } 14