Modified exception message

This commit is contained in:
Kelly Kelly 2020-08-27 10:18:02 -04:00
parent 1aec288485
commit 98c16c61d6

View File

@ -75,7 +75,7 @@ final class ReportingConfigLoader {
// Return null if a reporting configuration for the given name does not exist.
if (!reportDirectory.exists()) {
throw new ReportConfigException("Unable to find report configuration folder " + reportDirPath.toString());
throw new ReportConfigException("Unable to find report configuration folder for " + reportDirPath.toString() + ". Please configure in the application Options panel.");
}
if (!reportDirectory.isDirectory() || !reportDirectory.canRead()) {