add error log message

This commit is contained in:
stfm
2017-11-24 09:30:33 +01:00
parent f1f1b7a69d
commit e17cd5cf34

View File

@@ -699,6 +699,7 @@ public class HTMLtoLaTeXBackEnd extends HTMLEditorKit.ParserCallback {
try { try {
new ParserDelegator().parse(reader, b, false); new ParserDelegator().parse(reader, b, false);
} catch (IOException e) { } catch (IOException e) {
System.err.println("Caught exception when converting HTML text to TEX: " + e.getMessage());
} }
return new String(result); return new String(result);
} }