public ChangelogExporterArgs()

in log4j-changelog/src/main/java/org/apache/logging/log4j/changelog/exporter/ChangelogExporterArgs.java [33:42]


    public ChangelogExporterArgs(
            final Path changelogDirectory,
            final Set<ChangelogExporterTemplate> indexTemplates,
            final Set<ChangelogExporterTemplate> changelogTemplates,
            final Path outputDirectory) {
        this.changelogDirectory = Objects.requireNonNull(changelogDirectory, "changelogDirectory");
        this.indexTemplates = Objects.requireNonNull(indexTemplates, "indexTemplates");
        this.changelogTemplates = Objects.requireNonNull(changelogTemplates, "changelogTemplates");
        this.outputDirectory = Objects.requireNonNull(outputDirectory, "outputDirectory");
    }