簡體   English   中英

iText 文檔異常

[英]iText DocumentException

DocumentException (iText) 何時發生? 我正在嘗試記錄我的代碼,並且我想在@throws DocumentException標記之后添加一些解釋。 我在 API 中沒有找到任何內容。

文檔未打開時(已關閉或尚未打開)。

挖掘反編譯的源代碼,我發現這些行:

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");
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM