Ralf Hauser created PDFBOX-4991:
-----------------------------------
Summary: say when GlyphList is not found what was sought for
Key: PDFBOX-4991
URL: https://issues.apache.org/jira/browse/PDFBOX-4991
Project: PDFBox
Issue Type: Improvement
Reporter: Ralf Hauser
### Eclipse Workspace Patch 1.0
#P pdfbox
Index:
pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/encoding/GlyphList.java
===================================================================
--- pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/encoding/GlyphList.java
(revision 1882597)
+++ pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/encoding/GlyphList.java
(working copy)
@@ -49,8 +49,12 @@
{
String path = "/org/apache/pdfbox/resources/glyphlist/";
//no need to use a BufferedInputSteam here, as GlyphList uses a
BufferedReader
- try (InputStream resourceAsStream =
GlyphList.class.getResourceAsStream(path + filename))
+ String fullFileName = path + filename;
+ try (InputStream resourceAsStream =
GlyphList.class.getResourceAsStream(fullFileName))
{
+ if (null == resourceAsStream) {
+ throw new RuntimeException("GlyphList
'"+fullFileName+"' not found");
+ }
return new GlyphList(resourceAsStream, numberOfEntries);
}
catch (IOException e)
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]