2019-06-05 20:06:09 +01:00

17 lines
299 B
Java

package link.infra.packwiz.installer;
public interface IUserInterface {
public void show();
public void handleException(Exception e);
public default void handleExceptionAndExit(Exception e) {
handleException(e);
System.exit(1);
};
public default void setTitle(String title) {};
}