Creates a new {@code KeyStoreBuilderParameters} with the specified list
of {@code KeyStore.Builder}s.
if (parameters == null) {
throw new NullPointerException("Builders list is null");
}
if (parameters.isEmpty()) {
throw new IllegalArgumentException("Builders list is empty");
}
ksbuilders = new ArrayList(parameters);