🚧 Start work on executing openssl commands

This commit is contained in:
Magnus Leßmann (@MarkL4YG) 2024-11-04 21:53:12 +01:00
parent 56d6b8694a
commit c9fef111ad
5 changed files with 174 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package de.mlessmann.certassist.except;
import lombok.Getter;
public class UnresolvableCLIDependency extends Exception {
@Getter
private final String executableName;
@Getter
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;
}
}