CLI: Refactored significantly to work with new selection logic and management.

This commit is contained in:
Jonathan Bernard 2016-03-14 03:51:48 -05:00
parent 9205732b0e
commit 26f6378125
2 changed files with 330 additions and 504 deletions

View File

@ -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) }
}