🚧 Create disposable generator result & include cli output in Logging

This commit is contained in:
Magnus Leßmann (@MarkL4YG) 2024-11-10 21:10:24 +01:00
parent 8f198f944e
commit 24a4e32855
6 changed files with 97 additions and 29 deletions

View file

@ -0,0 +1,16 @@
package de.mlessmann.certassist.except;
public class CommandLineOperationException extends Exception {
public CommandLineOperationException(String message) {
super(message);
}
public CommandLineOperationException(String message, Throwable cause) {
super(message, cause);
}
public CommandLineOperationException(Throwable cause) {
super(cause);
}
}