Corrected exceptions to make javadoc happy

This commit is contained in:
Willem Cazander 2025-02-01 14:56:08 +01:00
parent 6ea31cdb83
commit c6b0b0f5fe
2 changed files with 1 additions and 4 deletions

View file

@ -40,7 +40,6 @@ import org.x4o.maisdoc.model.MaisDocRemoteClass;
import org.x4o.sax3.SAX3WriterXml; import org.x4o.sax3.SAX3WriterXml;
import org.x4o.sax3.io.SAX3PropertyConfig; import org.x4o.sax3.io.SAX3PropertyConfig;
import org.x4o.sax3.io.SAX3PropertyConfig.PropertyConfigItem; import org.x4o.sax3.io.SAX3PropertyConfig.PropertyConfigItem;
import org.xml.sax.SAXException;
/** /**
* ApiDocWriter writes the api documentation. * ApiDocWriter writes the api documentation.
@ -104,7 +103,7 @@ public class MaisDocWriter {
/** /**
* Writes the language documentation to the base path. * Writes the language documentation to the base path.
* @throws ElementException Is thrown when error is done. * @throws IOException Is thrown when error is done.
*/ */
public void writeDocumentation() throws IOException { public void writeDocumentation() throws IOException {
File basePath = propertyConfig.getPropertyFile(OUTPUT_PATH); File basePath = propertyConfig.getPropertyFile(OUTPUT_PATH);

View file

@ -55,7 +55,6 @@ import org.x4o.sax3.SAX3WriterXml;
import org.x4o.sax3.SAX3WriterHtml.DocType; import org.x4o.sax3.SAX3WriterHtml.DocType;
import org.x4o.sax3.SAX3WriterHtml.Tag; import org.x4o.sax3.SAX3WriterHtml.Tag;
import org.x4o.sax3.io.SAX3XMLConstants; import org.x4o.sax3.io.SAX3XMLConstants;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.AttributesImpl; import org.xml.sax.helpers.AttributesImpl;
/** /**
@ -74,7 +73,6 @@ public class MaisDocGenerator implements MaisDocContentPrinter {
* @param doc The ApiDoc to writer. * @param doc The ApiDoc to writer.
* @param basePath The bath path to write into. * @param basePath The bath path to write into.
* @throws IOException When file exception happens. * @throws IOException When file exception happens.
* @throws SAXException when xml exception happens.
*/ */
public void write(MaisDoc doc,File basePath) throws IOException { public void write(MaisDoc doc,File basePath) throws IOException {
if (doc==null) { if (doc==null) {