Fehlerabfang hinzugefügt
parent
ca2b8a8921
commit
b07fcb0ff5
|
@ -4,9 +4,21 @@ import PR2.HitoriSpiel.GUI.StartMenu;
|
|||
|
||||
import javax.swing.*;
|
||||
|
||||
|
||||
/**
|
||||
* Einstiegspunkt des Hitori-Spiels. Initialisiert die GUI und startet das Programm.
|
||||
*/
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
||||
SwingUtilities.invokeLater(() -> new StartMenu());
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
try {
|
||||
new StartMenu();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
JOptionPane.showMessageDialog(null, "Ein schwerer Fehler ist aufgetreten: " + e.getMessage(), "Fehler", JOptionPane.ERROR_MESSAGE);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue