[ 
https://issues.apache.org/jira/browse/PDFBOX-4991?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17215995#comment-17215995
 ] 

ASF subversion and git services commented on PDFBOX-4991:
---------------------------------------------------------

Commit 1882601 from Tilman Hausherr in branch 'pdfbox/branches/2.0'
[ https://svn.apache.org/r1882601 ]

PDFBOX-4991: improve error message when resource file not found, as suggested 
by Ralf Hauser

> 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
>            Priority: Minor
>
> ### 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: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org

Reply via email to