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 6177a07 commit 8852427Copy full SHA for 8852427
itext/itext.io/itext/io/source/RandomAccessSourceFactory.cs
@@ -272,7 +272,7 @@ private IRandomAccessSource CreateByReadingToMemory(String filename)
272
Stream stream = ResourceUtil.GetResourceStream(filename);
273
if (stream == null)
274
{
275
- throw new IOException(MessageFormatUtil.Format(IOException._1NotFoundAsFileOrResource
+ throw new System.IO.IOException(MessageFormatUtil.Format(IOException._1NotFoundAsFileOrResource
276
, filename));
277
}
278
return CreateByReadingToMemory(stream);
@@ -302,7 +302,7 @@ private IRandomAccessSource CreateByReadingToMemory(Stream stream)
302
303
stream.Dispose();
304
305
- catch (IOException)
+ catch (System.IO.IOException)
306
307
308
0 commit comments