001 package com.thaiopensource.validate.auto; 002 003 import org.xml.sax.SAXException; 004 005 import java.io.IOException; 006 007 import com.thaiopensource.validate.Schema; 008 import com.thaiopensource.validate.IncorrectSchemaException; 009 010 public interface SchemaFuture { 011 Schema getSchema() throws IncorrectSchemaException, SAXException, IOException; 012 RuntimeException unwrapException(RuntimeException e) throws SAXException, IOException, IncorrectSchemaException; 013 }