in log4j-changelog/src/main/java/org/apache/logging/log4j/changelog/exporter/ChangelogExporterTemplate.java [31:38]
public ChangelogExporterTemplate(
final String sourceFileName,
final String targetFileName,
final boolean failIfNotFound) {
this.sourceFileName = requireTemplateFileName(sourceFileName, "sourceFileName");
this.targetFileName = Objects.requireNonNull(targetFileName, "targetFileName");
this.failIfNotFound = failIfNotFound;
}