in src/main/java/org/apache/commons/exec/CommandLine.java [407:413]
private String toCleanExecutable(final String dirtyExecutable) {
Objects.requireNonNull(dirtyExecutable, "dirtyExecutable");
if (dirtyExecutable.trim().isEmpty()) {
throw new IllegalArgumentException("Executable cannot be empty");
}
return StringUtils.fixFileSeparatorChar(dirtyExecutable);
}