The below exceptions are coming in while I am trying to read from a file in java.
error: unreported exception FileNotFoundException; must be caught or declared to be thrown
String inputString = IOUtils.toString(new FileInputStream(FileUtils.getFile(testDirectory,
error: unreported exception IOException; must be caught or declared to be thrown
String inputString = IOUtils.toString(new FileInputStream(FileUtils.getFile(testDirectory,
The file IOUtil is of the package org.apache.commons.io,the functions have 'throws' in them in the IOUtil file, still these errors are coming.