CLI: Refactored significantly to work with new selection logic and management.
This commit is contained in:
parent
9205732b0e
commit
26f6378125
@ -0,0 +1,9 @@
|
||||
package com.jdbernard.wdiwtlt.cli
|
||||
|
||||
public class CliErr extends Exception {
|
||||
public CliErr(String message) { super(message) }
|
||||
public CliErr(String message, Throwable t) { super(message, t) }
|
||||
public CliErr(Throwable t) { super(t) }
|
||||
|
||||
public static err(String msg) { throw new CliErr(msg) }
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user