Added file path when version properties file not found.
This commit is contained in:
parent
144868855f
commit
d1438ecad5
1 changed files with 2 additions and 1 deletions
|
@ -98,7 +98,8 @@ public class VersionProcessor extends AbstractProcessor {
|
|||
}
|
||||
} else {
|
||||
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() + '`');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue