Added file path when version properties file not found.

This commit is contained in:
Erik C. Thauvin 2018-07-07 18:51:21 -07:00
parent 144868855f
commit d1438ecad5

View file

@ -98,7 +98,8 @@ public class VersionProcessor extends AbstractProcessor {
} }
} else { } else {
error("Could not find: " + propsFile); error("Could not find: " + propsFile);
throw new FileNotFoundException("The system cannot find the specified file: " + propsFile); throw new FileNotFoundException("The system cannot find the specified file: `"
+ propsFile.getAbsolutePath() + '`');
} }
} }