return content;
}
catch (SVNException e) {
throw new SvnException("Exception while retrieving the content of the file " + filePath
+ " from svn", e);
}
catch (FileNotFoundException e) {
throw new SvnException("Could not find the temporary file " + TEMP_FILE
+ " whose content was retrieved from the svn", e);
}
catch (IOException e) {
throw new SvnException("Could not read from the temporary file " + TEMP_FILE
+ " whose content was retrieved from the svn", e);
}
}