🚧 Create disposable generator result & include cli output in Logging
This commit is contained in:
parent
8f198f944e
commit
24a4e32855
6 changed files with 97 additions and 29 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue