🚧 Start work on executing openssl commands
This commit is contained in:
parent
56d6b8694a
commit
c9fef111ad
5 changed files with 174 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue