We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ded25 commit 0d6e4feCopy full SHA for 0d6e4fe
io/src/main/java/com/itextpdf/io/font/AdobeGlyphList.java
@@ -62,8 +62,7 @@ public class AdobeGlyphList {
62
try {
63
resource = ResourceUtil.getResourceStream(FontResources.ADOBE_GLYPH_LIST);
64
if (resource == null) {
65
- String msg = "AdobeGlyphList.txt not found as resource. (It must exist as resource in the package com.itextpdf.text.pdf.fonts)";
66
- throw new Exception(msg);
+ throw new Exception(FontResources.ADOBE_GLYPH_LIST + " not found as resource.");
67
}
68
byte[] buf = new byte[1024];
69
ByteArrayOutputStream stream = new ByteArrayOutputStream();
0 commit comments