1 package com.thaiopensource.validate.auto;2 3 import org.xml.sax.SAXException ;4 5 import java.io.IOException ;6 7 import com.thaiopensource.validate.Schema;8 import com.thaiopensource.validate.IncorrectSchemaException;9 10 public interface SchemaFuture {11 Schema getSchema() throws IncorrectSchemaException, SAXException , IOException ;12 RuntimeException unwrapException(RuntimeException e) throws SAXException , IOException , IncorrectSchemaException;13 }14