home-cert-assistant/src/main/java/de/mlessmann/certassist/except/UnresolvableCLIDependency.java
Magnus Leßmann (@MarkL4YG) 67698d9b0c
🚧 Fix issue where cert cleanup fails
- Delete temp directory using FileTree visitor recursively
- Update CertificateRequestBuilder to accept subject info directly from
  builder
2024-11-17 20:18:28 +01:00

16 lines
562 B
Java

package de.mlessmann.certassist.except;
import lombok.Getter;
@Getter
public class UnresolvableCLIDependency extends Exception {
private final String executableName;
private final String propertyName;
public UnresolvableCLIDependency(String executableName, String propertyName) {
super("Could not resolve executable for '%s'. (Use property '%s' to point the application directly to the executable.)".formatted(executableName, propertyName));
this.executableName = executableName;
this.propertyName = propertyName;
}
}