iText DocumentException

时间:2014-03-26 16:43:28

标签: java exception itext document

DocumentException(iText)何时发生?我正在尝试记录我的代码,我想在@throws DocumentException标记之后添加一些解释。我没有在API中找到任何内容。

1 个答案:

答案 0 :(得分:0)

未打开文档(已关闭或尚未打开)时。

翻阅反编译的源代码,我发现以下几行:

if (this.close) {
    throw new DocumentException("the document has been closed you cant add any elements");
} else if (!this.open) {
    throw new DocumentException("the document is not open yet you can only add meta information");
}