mirror of
https://github.com/packwiz/packwiz-installer.git
synced 2025-04-19 21:16:30 +02:00
17 lines
299 B
Java
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) {};
|
|
|
|
}
|