Skip to content

Commit

Permalink
ConfigurationParseException: skip stacktrace when file path is present.
Browse files Browse the repository at this point in the history
Robin Duda committed Mar 29, 2019
1 parent 20a8475 commit 90a9b66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -12,6 +12,6 @@ public class ConfigurationParseException extends CoreRuntimeException {
* @param cause the original exception.
*/
public ConfigurationParseException(String filePath, Throwable cause) {
super(String.format("Failure parsing configuration file %s", filePath), cause);
super(String.format("Failure parsing configuration file '%s'; %s", filePath, cause.getMessage()));
}
}

0 comments on commit 90a9b66

Please sign in to comment.